gecko-dev/layout/reftests/font-face/restore-size-detector-iframe.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

33 lines
682 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Resize-notifying IFRAME</title>
<script type="application/ecmascript">
var gTarget;
/*
* the test is done after the width becomes narrower (immediately)
* and then comes back to the same size. However, the two things
* might happen at once.
*/
function arm() {
gTarget = window.innerWidth;
window.addEventListener("resize", got_resize);
setTimeout(got_resize, 200);
}
function got_resize() {
if (window.innerWidth == gTarget) {
gTarget = -1;
// Remove the class="reftest-wait" from the top window
window.top.document.documentElement.removeAttribute("class");
}
}
</script>
</head>
<body>
</body>
</html>