2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / documenturi-affects-relative-paths.html
blobbbe5822fa90d2a2f016ab3bb149ab5689a3b47f9
1 <html>
2 <head>
3 <body>
4 <script>
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
8 document.documentURI = 'http://pass.example.com/';
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>