1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>"load" event fires on the iframe element when loading the initial empty document</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>
<body></body>
<script>
"use strict";
promise_test(async t => {
const iframe = document.createElement("iframe");
let loadCount = 0;
iframe.addEventListener("load", () => {
loadCount++;
});
document.body.appendChild(iframe);
assert_equals(loadCount, 1);
}, "load event fires synchronously on <iframe> element created with no src");
promise_test(async t => {
const iframe = document.createElement("iframe");
iframe.src = "";
let loadCount = 0;
iframe.addEventListener("load", () => {
loadCount++;
});
document.body.appendChild(iframe);
assert_equals(loadCount, 1);
}, "load event fires synchronously on <iframe> element created with src=''");
promise_test(async t => {
const iframe = document.createElement("iframe");
iframe.src = "about:blank";
let loadCount = 0;
iframe.addEventListener("load", () => {
loadCount++;
});
document.body.appendChild(iframe);
assert_equals(loadCount, 1);
}, "load event fires synchronously on <iframe> element created with src='about:blank'");
promise_test(async t => {
const iframe = document.createElement("iframe");
iframe.src = "about:blank#foo";
let loadCount = 0;
iframe.addEventListener("load", () => {
loadCount++;
});
document.body.appendChild(iframe);
assert_equals(loadCount, 1);
}, "load event fires synchronously on <iframe> element created with src='about:blank#foo'");
promise_test(async t => {
const iframe = document.createElement("iframe");
iframe.src = "about:blank?foo";
let loadCount = 0;
iframe.addEventListener("load", () => {
loadCount++;
});
document.body.appendChild(iframe);
assert_equals(loadCount, 1);
}, "load event fires synchronously on <iframe> element created with src='about:blank?foo'");
</script>
|