summaryrefslogtreecommitdiffstats
path: root/dom/encoding/test/reftest/bug863728-2.html
blob: d07b39bc493fefc1adbee6d94aa6f5bb03638803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html class=reftest-wait>
<meta charset=utf-8>
<script>
function runTest() {
  var r = document.documentElement;
  var d = window[0].document;
  var i = d.createElement("iframe");
  i.src = "data:text/html,PASS";
  i.onload = function() {
    r.removeAttribute("class");
  }
  d.body.appendChild(i);
}
</script>
<body onload="runTest();">
<iframe src="bug863728-1.html" width=400 height=200></iframe>