Update web-platform-tests to revision f26f3ca338953d0c2e8b62c97623f0f0eea430be

This commit is contained in:
WPT Sync Bot 2019-01-29 20:38:21 -05:00
parent 62ff032130
commit 3033b05605
32 changed files with 636 additions and 132 deletions

View file

@ -0,0 +1,17 @@
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(t => {
window.onload = t.step_func_done(() => assert_equals(i.contentDocument.body.innerText, "PASS"));
var i = document.createElement('iframe');
i.id ='i';
i.src = "javascript:'FAIL'";
document.body.appendChild(i);
i.contentDocument.open();
i.contentDocument.write("PASS")
i.contentDocument.close();
});
</script>
</body>