Update web-platform-tests to revision 155daf0c385420faf208b8bd5e319e244ec7f9cc

This commit is contained in:
WPT Sync Bot 2018-05-27 21:17:21 -04:00 committed by Josh Matthews
parent 4e6b100c7e
commit e9bdf87a27
768 changed files with 5782 additions and 26218 deletions

View file

@ -0,0 +1,13 @@
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe></iframe>
<script>
let test = async_test('document.querySelector(":target") must work when called in the window.load event');
let iframe = document.querySelector("iframe");
window.addEventListener("message", test.step_func_done(event => {
assert_equals(event.data, "PASS");
}));
iframe.src = "./query-target-in-load-event.part.html#target";
</script>