summaryrefslogtreecommitdiffstats
path: root/image/test/crashtests/1629490-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'image/test/crashtests/1629490-1.html')
-rw-r--r--image/test/crashtests/1629490-1.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/image/test/crashtests/1629490-1.html b/image/test/crashtests/1629490-1.html
new file mode 100644
index 0000000000..f35568ca4e
--- /dev/null
+++ b/image/test/crashtests/1629490-1.html
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML>
+<html class="reftest-wait">
+<head>
+</head>
+<body>
+<div id="container">
+ <iframe id='if' src="1629490-1-iframe.html"></iframe>
+</div>
+
+<script>
+let iterationsLeft = 25;
+
+function runTest() {
+ // Make sure the image is decoded and advanced to it's final frame.
+ let img = document.getElementById("if").contentWindow.document.getElementById("image1");
+ img.decode().then(function() {
+ setTimeout(forceDiscard, 2000);
+ });
+}
+
+function showIframe() {
+ document.getElementById("container").style.display = "";
+ document.documentElement.getBoundingClientRect();
+ requestAnimationFrame(forceDecode);
+}
+
+function forceDecode() {
+ let img = document.getElementById("if").contentWindow.document.getElementById("image1");
+ img.decode().then(function() {
+ setTimeout(forceDiscard, 0);
+ });
+}
+
+function forceDiscard() {
+ iterationsLeft--;
+ if (iterationsLeft < 0) {
+ document.documentElement.className = "";
+ return;
+ }
+ document.getElementById("container").style.display = "none";
+ document.documentElement.getBoundingClientRect();
+ requestAnimationFrame(() => { requestAnimationFrame( () => { setTimeout(showIframe, 0); } ) });
+}
+
+//window.addEventListener("load", runTest);
+window.addEventListener("MozReftestInvalidate", runTest);
+</script>
+</body>
+</html>