4 <title>Resize-notifying IFRAME
</title>
5 <script type=
"application/ecmascript">
9 /* the test is done after the next resize */
12 window.addEventListener(
"resize", got_resize, false);
15 /* the test is done after the next resize to wider than the current width */
16 function arm_for_wider() {
17 gTarget = window.innerWidth;
18 window.addEventListener(
"resize", got_resize, false);
21 function got_resize() {
22 if (window.innerWidth
> gTarget) {
23 // Remove the
class=
"reftest-wait" from the top window
24 window.top.document.documentElement.removeAttribute(
"class");