mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE HTML>
|
||||
<meta charset=utf-8>
|
||||
<title>PerformanceObservers: navigation</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="performanceobservers.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) {
|
||||
var observer = new PerformanceObserver(
|
||||
t.step_func(function (entryList, obs) {
|
||||
checkEntries(entryList.getEntries(),
|
||||
[{ entryType: "navigation", name: "document"}]);
|
||||
checkEntries(entryList.getEntriesByType("navigation"),
|
||||
[{ entryType: "navigation", name: "document"}]);
|
||||
checkEntries(entryList.getEntriesByName("document"),
|
||||
[{ entryType: "navigation", name: "document"}]);
|
||||
observer.disconnect();
|
||||
t.done();
|
||||
})
|
||||
);
|
||||
observer.observe({entryTypes: ["navigation"]});
|
||||
}, "navigation entry is observable");
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue