mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|