summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/313086-1.xml
blob: 5ebcf45edbe1274b6fb3d0c4060d73151d73c0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' id="root" class="reftest-wait">

<div id="D1"><div id="D2"/></div>

<script>
<![CDATA[

function gE(id) { return document.getElementById(id); }

function init()
{
  gE("root").style.display = "table";

  gE("D1").style.position = "absolute";

  setTimeout(function() {gE("D2").style.position = "fixed";}, 100);
  setTimeout(function() {gE("D1").style.overflow = "hidden";}, 200);
  setTimeout(function() {gE("root").style.width = "200%"; document.documentElement.removeAttribute("class"); }, 300);
}

window.addEventListener("load", init, false);

]]>
</script>

</html>