tenfourfox/layout/reftests/bidi/718236-2.html

23 lines
388 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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><span>&#x0661;<span id="x"></span>&#x0663;</span>&#x062A;</div>
</body>
</html>