jruderman%hmc.edu 1c2aa3a696 Add crashtest
git-svn-id: svn://10.0.0.236/trunk@241372 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-15 22:08:15 +00:00

29 lines
731 B
XML

<?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>