mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
698 B
HTML
22 lines
698 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<title>Plugin Problem UI directionality test</title>
|
||
|
</head>
|
||
|
<body dir="ltr" style="text-align: left;">
|
||
|
<embed type="application/x-test" width="400" height="400" id="crashme"></embed>
|
||
|
<script type="text/javascript">
|
||
|
var plugin = document.getElementById("crashme");
|
||
|
function checkForCrashUI() {
|
||
|
if (getComputedStyle(plugin, null).MozBinding != "none") {
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
clearInterval(interval);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var interval = setInterval(checkForCrashUI, 100);
|
||
|
setTimeout(function() { plugin.crash(); }, 0);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|