1
0
Fork 0
firefox/testing/web-platform/tests/preload/dynamic-adding-preload.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
861 B
HTML

<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/preload/resources/preload_helper.js"></script>
<script>
var t = async_test('Makes sure that a dynamically added preloaded resource is downloaded');
</script>
<body>
<script>
t.step(function() {
verifyPreloadAndRTSupport();
var link = document.createElement("link");
link.as = "script";
link.rel = "preload";
link.href = "resources/dummy.js?dynamic-adding-preload";
link.onload = t.step_func(function() {
t.step_timeout(function() {
verifyNumberOfResourceTimingEntries("resources/dummy.js?dynamic-adding-preload", 1);
t.done();
}, 0);
});
document.body.appendChild(link);
});
</script>
</body>