mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
25
dom/plugins/test/reftest/pluginproblemui-direction-2.html
Normal file
25
dom/plugins/test/reftest/pluginproblemui-direction-2.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-expect-process-crash reftest-wait">
|
||||
<head>
|
||||
<title>Plugin Problem UI directionality test</title>
|
||||
</head>
|
||||
<body dir="rtl" style="text-align: left;">
|
||||
<!-- a variant of pluginproblemui-direction-1.html that covers up
|
||||
the spot where we get random variation with d2d, so that we
|
||||
can still test it with d2d -->
|
||||
<div style="position: absolute; width: 1px; height: 1px; background: red; z-index: 1; left: 401px; top: 19px;"></div>
|
||||
<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.classList.remove("reftest-wait");
|
||||
clearInterval(interval);
|
||||
}
|
||||
}
|
||||
|
||||
var interval = setInterval(checkForCrashUI, 100);
|
||||
setTimeout(function() { plugin.crash(); }, 0);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue