mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-27 13:28:52 +00:00
17 lines
503 B
HTML
17 lines
503 B
HTML
<!DOCTYPE html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
var t = async_test('Makes sure that Link headers preload resources');
|
|
</script>
|
|
<body>
|
|
<script src="resources/dummy.js?pipe=trickle(d5)"></script>
|
|
<script>
|
|
window.addEventListener("load", t.step_func(function() {
|
|
var entries = performance.getEntriesByType("resource");
|
|
assert_equals(entries.length, 6);
|
|
t.done();
|
|
}));
|
|
</script>
|
|
</body>
|