mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
5b9995e714
--HG-- extra : rebase_source : 9a327e8f44541ac822bc7be52caa1ceab825ccd1
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>
|