summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/621253-1-externalFilter.html
blob: ecc0aea23e886851075bb816d01ba93cc23ae624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html class="reftest-wait"
      reftest-zoom="0.5">
<head>
<script>
  function doTest() {
    var iframe = document.getElementsByTagName("iframe")[0];
    iframe.setAttribute("onload", "snapshot()");
    iframe.contentWindow.location.reload();
  }

  function snapshot() {
    document.documentElement.removeAttribute("class");
  }
</script>
</head>
<body onload="doTest()" style="margin: 0">
<iframe scrolling="no" src="621253-helper-externalFilter.xhtml"
	style="border: 0"></iframe>
</body>
</html>