Skip to content
Snippets Groups Projects
Commit 0e9062ad authored by Jonathan Watt's avatar Jonathan Watt
Browse files

Attempt intermittent orange fix. Bug 518274. reftest:...

Attempt intermittent orange fix. Bug 518274. reftest: dynamic--inline-resize-window-width.xhtml intermittently fails.
parent 7f907dda
No related branches found
No related tags found
No related merge requests found
......@@ -33,12 +33,18 @@ var initial_height = top.innerHeight;
function restore_height()
{
document.removeEventListener("MozReftestInvalidate", restore_height, false);
document.addEventListener("MozReftestInvalidate", finish_test, false);
top.innerHeight = initial_height;
setTimeout(function() { document.documentElement.removeAttribute('class'); }, 0);
}
top.innerHeight /= 2;
function finish_test()
{
document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", restore_height, false);
top.innerHeight /= 2;
</script>
</head>
......
......@@ -33,12 +33,18 @@ var initial_width = top.innerWidth;
function restore_width()
{
document.removeEventListener("MozReftestInvalidate", restore_width, false);
document.addEventListener("MozReftestInvalidate", finish_test, false);
top.innerWidth = initial_width;
setTimeout(function() { document.documentElement.removeAttribute('class'); }, 0);
}
top.innerWidth /= 2;
function finish_test()
{
document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", restore_width, false);
top.innerWidth /= 2;
</script>
</head>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment