blob: abc84f458e67e5d73fadfece38831354502117cd [file] [log] [blame]
<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>