mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Update web-platform-tests to revision 7bfbc0fa30aad867faa1c6cc748884be76635a08
This commit is contained in:
parent
0fa3248723
commit
65b0e306b7
87 changed files with 2402 additions and 622 deletions
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE HTML>
|
||||
<meta charset=utf-8>
|
||||
<title>PerformanceObservers: navigation</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<h1>PerformanceObservers: navigation</h1>
|
||||
<p>
|
||||
Navigation will <a href="https://w3c.github.io/performance-timeline/#dfn-queue-a-performanceentry">queue a PerformanceEntry</a>.
|
||||
</p>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
async_test(function (t) {
|
||||
function checkEntry(pes) {
|
||||
assert_equals(pes.length, 1, "Only one navigation timing entry");
|
||||
assert_equals(pes[0].entryType, "navigation", "entryType is \"navigation\"");
|
||||
assert_equals(pes[0].name, window.location.toString(), "name is the address of the document");
|
||||
}
|
||||
var observer = new PerformanceObserver(
|
||||
t.step_func(function (entryList, obs) {
|
||||
checkEntry(entryList.getEntries());
|
||||
checkEntry(entryList.getEntriesByType("navigation"));
|
||||
checkEntry(entryList.getEntriesByName(window.location.toString()));
|
||||
observer.disconnect();
|
||||
t.done();
|
||||
})
|
||||
);
|
||||
observer.observe({entryTypes: ["navigation"]});
|
||||
}, "navigation entry is observable");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue