diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/base/crashtests/813372-1.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/base/crashtests/813372-1.html')
-rw-r--r-- | layout/base/crashtests/813372-1.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/layout/base/crashtests/813372-1.html b/layout/base/crashtests/813372-1.html new file mode 100644 index 000000000..f2cf3a78d --- /dev/null +++ b/layout/base/crashtests/813372-1.html @@ -0,0 +1,52 @@ +<!DOCTYPE HTML> +<html class="reftest-wait" xmlns="http://www.w3.org/1999/xhtml"> +<head> +<!-- There is, at present, no official xsd for (X)HTML5. A pity. Usefulness would depend on the parser and extensions made by the site. --> +<title>testcase</title> + <style type="text/css"> +* { margin: 0; padding: 0; } +.hide { top: 80% !important; width: 75% !important; height: 50% !important; } + +#details +{ + position: absolute; + top: 0; + left: 0; + width: 0%; + border: 10mm dotted red; + border-radius: 100em; + background-color: lime; + height: 0%; + overflow: scroll; + -moz-transition-property: top width; + -moz-transition-duration: 0.75s; + opacity: 0.9; +} + + </style> +</head> +<body> + + +<section id="details" class="hide"> +I'm a test of hiding animation +<button onclick="this.parentNode.classList.add('hide')">Click me to hide</button> +</section> + +<script> +var kNumIterations = 5; +var currentIteration = 0; +var inrval; + +function doe() { + if (++currentIteration >= kNumIterations) { + clearInterval(inrval); + document.documentElement.removeAttribute('class'); + } else { + document.getElementById('details').classList.toggle('hide'); + } +} +document.addEventListener("MozReftestInvalidate", function(){ inrval = setInterval(doe, 1000); }, false); +</script> +</body> +</html> |