зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
402 B
HTML
14 строки
402 B
HTML
<html class="reftest-wait">
|
|
<script>
|
|
a = document.createElement("style")
|
|
a.appendChild(document.createTextNode("*:first-letter { }"))
|
|
document.documentElement.appendChild(a)
|
|
a.style.display = "contents"
|
|
setTimeout(() => {
|
|
a.appendChild(document.createElement("x"));
|
|
a.lastChild.offsetWidth;
|
|
document.documentElement.className = "";
|
|
}, 0)
|
|
</script>
|
|
</html>
|