blob: f6f9142cf95bb9bba1efde0a250e8a936fe1c24d [file] [log] [blame]
<!DOCTYPE html>
<html>
<body onload="go()">
<p>Bug 64284: Crash in RenderBox::paintBoxDecorations when documentElement has no renderer</p>
<p>For this test to PASS, it should not ASSERT or CRASH.</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function go() {
document.open();
var oUElement = document.createElement("U");
oUElement.hidden=true;
oUElement.innerHTML="<style>*{border-block-start-style:groove}";
document.appendChild(oUElement);
document.close();
}
</script>
</body>
</html>