Parent Directory
|
Revision Log
relative in data doesn't work in browsers; relative in about:blank does work since browsers set the document.URL of the about:blank document as the callee; if the about:blank is the top-level browsing context, then the link does not work again
| 1 | wakaba | 1.1 | <!DOCTYPE HTML> |
| 2 | <title>Relative reference in data: URI</title> | ||
| 3 | <iframe src="about:blank">Need <iframe> support for this test</iframe> | ||
| 4 | <script> | ||
| 5 | setTimeout (function () { | ||
| 6 | var iframe = document.getElementsByTagName ('iframe')[0]; | ||
| 7 | iframe.src = 'javascript:document.write ("<a href=relative>relative</a>")'; | ||
| 8 | }, 1000); | ||
| 9 | </script> |
| [email protected] | ViewVC Help |
| Powered by ViewVC 1.1.24 |