blob: a9bcd6814d2f9b0ae872f277e284e8593dbb763f [file] [log] [blame]
<!DOCTYPE html>
<body>
<pre id="log"></pre>
<script src="resources/runner.js"></script>
<script>
var spec = loadFile("resources/html5.html");
start(20, function() {
var iframe = document.createElement("iframe");
iframe.style.display = "none"; // Prevent creation of the rendering tree, so we only test HTML parsing.
iframe.sandbox = ''; // Prevent external script loads which could cause write() to return before completing the parse.
document.body.appendChild(iframe);
iframe.contentDocument.open();
iframe.contentDocument.write(spec);
iframe.contentDocument.close();
document.body.removeChild(iframe);
});
</script>
</body>