diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/resource-timing/iframe-non-html.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/resource-timing/iframe-non-html.html')
-rw-r--r-- | testing/web-platform/tests/resource-timing/iframe-non-html.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/resource-timing/iframe-non-html.html b/testing/web-platform/tests/resource-timing/iframe-non-html.html new file mode 100644 index 0000000000..a5df3b0348 --- /dev/null +++ b/testing/web-platform/tests/resource-timing/iframe-non-html.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>Test the sequence of events when reporting iframe timing.</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="resources/resource-loaders.js"></script> +<body> +<script> + function test(href, type) { + promise_test(async t => { + await load.iframe(href); + const entries = performance.getEntriesByType('resource').filter(({name}) => name.includes(href)); + assert_equals(entries.length, 1); + assert_equals(entries[0].initiatorType, 'iframe'); + }, `Iframes should report resource timing for ${type} iframes`); + } + + test('/common/square.png', 'image'); + test('/common/dummy.xhtml', 'xhtml'); + test('/common/dummy.xml', 'xml'); + test('/common/text-plain.txt', 'text'); +</script> +</body>
\ No newline at end of file |