Update web-platform-tests to revision c5dd38e18824f16f48b0c1703f43ff33359d9947

This commit is contained in:
WPT Sync Bot 2021-01-27 08:22:03 +00:00
parent 74e3a4b0c5
commit ec9472572a
129 changed files with 2532 additions and 324 deletions

View file

@ -1,13 +0,0 @@
async_test(t => {
const frame = document.body.appendChild(document.createElement("iframe"));
assert_equals(frame.contentDocument.open(), frame.contentDocument);
assert_equals(frame.contentDocument.documentElement, null);
frame.contentDocument.write("<div>heya</div>");
frame.contentDocument.close();
frame.contentWindow.addEventListener("pageshow", function() {
t.step(function() {
assert_true(true, "Got pageshow event");
});
t.done();
});
}, "document.open(), and the pageshow events");