mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
15 lines
612 B
HTML
15 lines
612 B
HTML
<!DOCTYPE html>
|
|
<title>Tests that the load is dispatched when a portal finishes loading.</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
async_test(function(t) {
|
|
var w = window.open("resources/simple-portal.html");
|
|
w.onload = function() {
|
|
var portal = w.document.createElement("portal");
|
|
portal.src = "resources/simple-portal.html";
|
|
portal.onload = t.step_func_done();
|
|
w.document.body.appendChild(portal);
|
|
}
|
|
}, "Tests that the load event is dispatched when a portal finishes loading.");
|
|
</script>
|