https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 93776cefe33e150432abe256951e35e385ba82e2 authored by Ian Kilpatrick on 12 April 2018, 12:08:38 UTC
[css-layout-api] Fix DCHECK with the custom layout and multicol.
Tip revision: 93776ce
onvisibilitychange.html
<!doctype html>
<title>onvisibilitychange attribute is a proper event handler</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var ast = new async_test("onvisibilitychange attribute is a proper event handler");
document.getElementById("frame1");
function startTest() {
  var iframe1 = document.getElementById("frame1");
  iframe1.contentWindow.document.onvisibilitychange = ast.step_func(function() {
    ast.done();
  });
  frame1.parentNode.removeChild(frame1);
}
</script>
<iframe id="frame1" src='resources/iframe.html'></iframe>
back to top