mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
34 lines
467 B
HTML
34 lines
467 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
var obj;
|
|
|
|
function boo()
|
|
{
|
|
obj = document.getElementById("obj");
|
|
setScriptSrc();
|
|
}
|
|
|
|
function setScriptSrc()
|
|
{
|
|
obj.data = "javascript:setScriptSrc2();";
|
|
}
|
|
|
|
function setScriptSrc2()
|
|
{
|
|
obj.data = "javascript:void 0";
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(boo, 30);">
|
|
|
|
<object data="../../../testing/crashtest/images/tree.gif" id="obj">
|
|
|
|
</body>
|
|
|
|
</html>
|