gecko-dev/layout/base/crashtests/615781-1.xhtml
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

23 lines
374 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); });
]]>
</script>
</html>