mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
dbb3111ff1
MozReview-Commit-ID: 6Qez8NE8oze
27 lines
499 B
HTML
27 lines
499 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById("x").style.content = "'x'";
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById("s").remove();
|
|
document.documentElement.offsetHeight;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<div style="display: inline-grid; white-space: pre;"><div id="x"><span>
|
|
<span>
|
|
</span><span id="s"></span></span></div></div>
|
|
|
|
</body>
|
|
</html>
|