2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / documenturi-assigned-junk-implies-relative-urls-do-not-resolve.html
blobdef4691a7bb3c0cfaeb038b76560402b95add8cf
1 <html>
2 <head>
3 <body>
4 <script>
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
8 document.documentURI = 'junk';
9 </script>
10 <a href="foo.html">Hyperlink to foo.html</a>
11 <pre>
12 <script>
13 var a = document.getElementsByTagName('a')[0];
14 document.writeln('a.href = ' + a.href);
15 </script>
16 </pre>
17 </body>
18 </html>