summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resource-timing/iframe-non-html.html
blob: a5df3b034899d1fbbf4281d6aa939df53b05feda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>