summaryrefslogtreecommitdiffstats
path: root/layout/reftests/layers/component-alpha-exit-1.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/layers/component-alpha-exit-1.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-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/reftests/layers/component-alpha-exit-1.html')
-rw-r--r--layout/reftests/layers/component-alpha-exit-1.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/reftests/layers/component-alpha-exit-1.html b/layout/reftests/layers/component-alpha-exit-1.html
new file mode 100644
index 000000000..b9d659042
--- /dev/null
+++ b/layout/reftests/layers/component-alpha-exit-1.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<title>Test transition from component-alpha layer to single-alpha layer</title>
+<script type="text/javascript">
+document.addEventListener("MozReftestInvalidate", function scrollOnePixelDown () {
+ var scrollbox = document.getElementById("scrollbox");
+ window.addEventListener("MozAfterPaint", function scrollDownAllTheWay() {
+ window.removeEventListener("MozAfterPaint", arguments.callee, false);
+ scrollbox.scrollTop = 1000;
+ document.documentElement.className = "";
+ }, false);
+ scrollbox.scrollTop = 1; // activate scroll layer
+}, false);
+</script>
+<style>
+#scrollbox {
+ margin: 20px;
+ width: 300px;
+ height: 400px;
+ overflow-y: hidden;
+ background: -moz-linear-gradient(#FFF, #FFF);
+}
+
+#inner {
+ background-color: #000;
+ margin-top: 10px;
+ height: 5px;
+ line-height: 5px;
+ padding-bottom: 400px;
+}
+</style>
+
+<div id="scrollbox">
+ <div id="inner">
+ Text
+ </div>
+</div>