mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|