| <html> |
| <head> |
| <script> |
| function runTest() { |
| if (window.layoutTestController) |
| layoutTestController.dumpAsText(); |
| |
| var htmlDoc = document.implementation.createHTMLDocument(''); |
| |
| htmlDoc.open(); |
| htmlDoc.write('<html><img id="theImage" src="/test"></html>'); |
| |
| if (htmlDoc.getElementById('theImage').src == '/test') |
| document.getElementById('result').innerHTML = 'SUCCESS'; |
| } |
| </script> |
| </head> |
| <body onload="runTest()"> |
| This tests that paths in documents created using document.implementation.createHTMLDocument are returned correctly. |
| <div id="result">FAILURE</div> |
| </body> |
| </html> |