summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/reftest/pluginproblemui-direction-1.html
blob: 9888850dc98b1b19e6db7bc34e9a21f2d0e93918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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;">
    <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>