mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01:00
15 lines
543 B
HTML
15 lines
543 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
const t = async_test("Finite resource timing entries buffer size");
|
|
addEventListener("message", t.step_func_done(e => {
|
|
assert_equals(e.data, "PASS", "Document domain had no impact on the timing-allow check");
|
|
}));
|
|
window.open("//{{domains[www]}}:{{ports[http][1]}}/resource-timing/resources/document-domain-no-impact.sub.html");
|
|
</script>
|