2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / documenturi-not-affected-by-base-tag.html
blob9d226d4e874eb857b7ca169a47815e922af9dcef
1 <html>
2 <head>
3 <script>
4 if (window.layoutTestController)
5 layoutTestController.dumpAsText();
7 function normalizeURL(url) {
8 return url.substring(url.lastIndexOf('LayoutTests'));
10 </script>
11 <base href="http://fail.example.com/">
12 </head>
13 <body>
14 <div>The document.documentURI property should not be affected by the &lt;base&gt; tag.</div>
15 <script>document.write(normalizeURL(document.documentURI));</script>
16 </body>
17 </html>