18 lines
563 B
HTML
18 lines
563 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Resource Timing - TAO on reload</title>
|
|
<link rel="author" title="Google" href="http://www.google.com/" />
|
|
<link rel="help" href="https://www.w3.org/TR/resource-timing-2/#sec-timing-allow-origin"/>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body>
|
|
<iframe id="test_iframe" src="resources/iframe-reload-TAO.html"></iframe>
|
|
<script>
|
|
window.onload = () => {
|
|
fetch_tests_from_window(test_iframe.contentWindow);
|
|
};
|
|
</script>
|
|
</body>
|