layout/base/crashtests/313086-1.xml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/313086-1.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "xhtml1-strict.dtd">
     1.6 +<html xmlns='http://www.w3.org/1999/xhtml' id="root" class="reftest-wait">
     1.7 +
     1.8 +<div id="D1"><div id="D2"/></div>
     1.9 +
    1.10 +<script>
    1.11 +<![CDATA[
    1.12 +
    1.13 +function gE(id) { return document.getElementById(id); }
    1.14 +
    1.15 +function init()
    1.16 +{
    1.17 +  gE("root").style.display = "table";
    1.18 +
    1.19 +  gE("D1").style.position = "absolute";
    1.20 +
    1.21 +  setTimeout(function() {gE("D2").style.position = "fixed";}, 100);
    1.22 +  setTimeout(function() {gE("D1").style.overflow = "hidden";}, 200);
    1.23 +  setTimeout(function() {gE("root").style.width = "200%"; document.documentElement.removeAttribute("class"); }, 300);
    1.24 +}
    1.25 +
    1.26 +window.addEventListener("load", init, false);
    1.27 +
    1.28 +]]>
    1.29 +</script>
    1.30 +
    1.31 +</html>

mercurial