mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
402 B
HTML
18 lines
402 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<body>
|
||
|
<fieldset id="f" style="overflow: auto;"></fieldset>
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
var f = document.getElementById("f");
|
||
|
var s = document.createElement("span");
|
||
|
s.textContent = "Hello Kitty";
|
||
|
f.appendChild(s);
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
window.addEventListener("MozReftestInvalidate", boom);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|