gecko-dev/layout/reftests/bugs/459443-1.html
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
737 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<body>
<iframe id="foo"></iframe>
<script type="text/javascript">
var n = document.getElementById('foo');
var f = n.contentWindow;
f.document.open();
f.document.write('');
f.onload = function() {
f.document.designMode = 'on';
setTimeout(function() {
f.document.designMode='on';
f.location = 'data:text/html;charset=utf-8,<body>FAIL<script>document.body.innerHTML="PASS"<\/script>';
n.addEventListener("load",
function() { document.documentElement.className = ''; });
}, 0);
};
f.document.close();
</script>
</body>
</html>