layout/reftests/bugs/883568-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!DOCTYPE html>
michael@0 2 <html class="reftest-wait">
michael@0 3 <head>
michael@0 4 <style>
michael@0 5 #wrapper {
michael@0 6 overflow: hidden;
michael@0 7 }
michael@0 8 #testDiv1 {
michael@0 9 width: 500px;
michael@0 10 height: 100px;
michael@0 11 position: relative;
michael@0 12 overflow: hidden;
michael@0 13 }
michael@0 14 </style>
michael@0 15 <script>
michael@0 16 window.addEventListener("MozReftestInvalidate", function() {
michael@0 17 testDiv1.style.left = "-500px";
michael@0 18 testDiv1.style.transform = "translateX(500px)";
michael@0 19 document.documentElement.removeAttribute("class");
michael@0 20 }, false);
michael@0 21 </script>
michael@0 22 </head>
michael@0 23 <body>
michael@0 24 <div id="wrapper">
michael@0 25 <div id="testDiv1" style="background:yellow;"></div>
michael@0 26 </div>
michael@0 27 </body>
michael@0 28 </html>

mercurial