Implement PerformanceNavigation interface

This commit is contained in:
Iulian Gabriel Radu 2019-04-11 00:26:01 +03:00
parent e100af57a5
commit 62f0785c2c
19 changed files with 411 additions and 69 deletions

View file

@ -49,3 +49,8 @@ partial interface Performance {
partial interface Performance {
PerformanceNavigationTiming timing();
};
// https://w3c.github.io/navigation-timing/#extensions-to-the-performance-interface
partial interface Performance {
[SameObject, Exposed=Window]
readonly attribute PerformanceNavigation navigation;
};