dom/encoding/test/reftest/bug863728-2.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/encoding/test/reftest/bug863728-2.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html class=reftest-wait>
     1.6 +<meta charset=utf-8>
     1.7 +<script>
     1.8 +function runTest() {
     1.9 +  var r = document.documentElement;
    1.10 +  var d = window[0].document;
    1.11 +  var i = d.createElement("iframe");
    1.12 +  i.src = "data:text/html,PASS";
    1.13 +  i.onload = function() {
    1.14 +    r.removeAttribute("class");
    1.15 +  }
    1.16 +  d.body.appendChild(i);
    1.17 +}
    1.18 +</script>
    1.19 +<body onload="runTest();">
    1.20 +<iframe src="bug863728-1.html" width=400 height=200></iframe>

mercurial