https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 6f875567c0134d559faf01839dfc47ad90bfd89c authored by ffxbld on 24 October 2012, 14:13:02 UTC
Added FENNEC_16_0_2_RELEASE FENNEC_16_0_2_BUILD1 tag(s) for changeset a16d1d09180e. DONTBUILD CLOSED TREE a=release
Tip revision: 6f87556
459443-1.html
<!DOCTYPE html>
<html class="reftest-wait">
  <body>
    <iframe id="foo"></iframe> 
    <script type="text/javascript">
        var n = document.getElementById('foo');
        var f = n.contentWindow;
        f.document.open();
        f.document.write('');
        f.onload = function() {
          f.document.designMode = 'on';
          setTimeout(function() {
            f.document.designMode='on';
            f.location = 'data:text/html;charset=utf-8,<body>FAIL<script>document.body.innerHTML="PASS"<\/script>';
            n.addEventListener("load",
                               function() { document.documentElement.className = ''; },
                               false);
          }, 0);
        };
        f.document.close();
    </script>
  </body>
</html>
back to top