mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8ee4854efd
This prevents useless work which _could_ lead to visual artifacts, as well as assertions caused by us touching dirty frames,
23 lines
381 B
HTML
23 lines
381 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
|
|
|
<input id="i"/>
|
|
|
|
<script>
|
|
<![CDATA[
|
|
|
|
function boom()
|
|
{
|
|
var i = document.getElementById("i");
|
|
i.select();
|
|
i.setAttribute("type", "radio");
|
|
i.blur();
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
window.addEventListener("load", function() { setTimeout(boom, 100); }, false);
|
|
|
|
]]>
|
|
</script>
|
|
|
|
</html>
|