blob: 3d2a17cf6717615426888b3e39d6d039c3cdfcc2 [file] [log] [blame]
<html>
<head>
<script>
function testShouldNotCrash()
{
if (!window.testRunner)
return;
testRunner.dumpAsText();
var host = document.createElement("blockquote");
var shadow = host.attachShadow({mode: 'open'});
var children = shadow.childNodes;
document.body.appendChild(host);
document.body.offsetLeft;
document.body.innerHTML = "PASS unless crash";
}
</script>
</head>
<body onload="testShouldNotCrash()">
</body>
</html>