Mypal/layout/reftests/bidi/718236-1.html

23 lines
388 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function boom()
{
// Force frame construction
document.documentElement.offsetHeight;
// A dynamic change
var x = document.getElementById("x");
x.parentNode.removeChild(x);
}
</script>
</head>
<body onload="boom();">
<div>&#x062A;<span>&#x0661;<span id="x"></span>&#x0663;</span></div>
</body>
</html>