| <!DOCTYPE html> |
| <!-- |
| @AURALINUX-ALLOW:link-target* |
| @BLINK-ALLOW:*linkTarget* |
| @WIN-ALLOW:link-target* |
| @WIN-DENY:value* |
| --> |
| <html> |
| <head> |
| <base target="_top"> |
| </head> |
| <body> |
| <p>Top context.</p> |
| <iframe name="iframeContext" srcdoc=" |
| <p>First context.</p> |
| <a href='http://example.com/' target='_self'> |
| Self target. Opens in this iframe. |
| </a> |
| <a href='http://example.com/' target='_parent'> |
| Parent target. Opens in the body of the whole page. |
| </a> |
| "></iframe> |
| <a href="http://example.com/"> |
| Base target. Open in blank. |
| </a> |
| <a href="http://example.com/" target="_top"> |
| Top target. Opens in current context. |
| </a> |
| <a href="http://example.com/" target="iframeContext"> |
| Opens in iframe. |
| </a> |
| </body> |
| </html> |