| Yoav Weiss | 7b2c320 | 2017-08-18 11:45:55 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <script src="/resources/testharness.js"></script> |
| 3 | <script src="/resources/testharnessreport.js"></script> |
| 4 | <script src="/preload/resources/preload_helper.js"></script> |
| 5 | <script> |
| 6 | var t = async_test('Makes sure that Link headers on subresources preload resources'); |
| 7 | </script> |
| 8 | <link rel=stylesheet href="resources/dummy-preloads-subresource.css?link-header-on-subresource"> |
| Yoav Weiss | 7b2c320 | 2017-08-18 11:45:55 | [diff] [blame] | 9 | <script> |
| 10 | window.addEventListener("load", t.step_func(function() { |
| Kunihiko Sakamoto | eb5aa00 | 2019-02-05 03:35:20 | [diff] [blame^] | 11 | t.step_timeout(function() { |
| 12 | verifyPreloadAndRTSupport(); |
| 13 | verifyNumberOfResourceTimingEntries("/fonts/CanvasTest.ttf?link-header-on-subresource", 1); |
| 14 | t.done(); |
| 15 | }, 5000); |
| Yoav Weiss | 7b2c320 | 2017-08-18 11:45:55 | [diff] [blame] | 16 | })); |
| 17 | </script> |
| 18 | |