mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
490 B
HTML
21 lines
490 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<style>
|
||
|
div::first-letter { color: red; font-size: 200%; background-color: blue; }
|
||
|
</style>
|
||
|
<script>
|
||
|
function boom() {
|
||
|
document.documentElement.offsetWidth;
|
||
|
var s = document.getElementById("s");
|
||
|
s.parentNode.removeChild(s);
|
||
|
document.documentElement.offsetWidth;
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="boom();">
|
||
|
<div>
|
||
|
<span id="s" style="position: absolute;">abcdefh</span>T
|
||
|
</div>
|
||
|
</body>
|