mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
11 lines
243 B
HTML
11 lines
243 B
HTML
<!DOCTYPE HTML>
|
|
<html style="width:1px">
|
|
<body><span><span id="y"></span>a b</span>
|
|
<script>
|
|
var y = document.getElementById("y");
|
|
document.documentElement.offsetHeight;
|
|
y.appendChild(document.createTextNode("c d"));
|
|
</script>
|
|
</body>
|
|
</html>
|