diff --git a/index.html b/index.html index fe75baa..f5ee65d 100644 --- a/index.html +++ b/index.html @@ -364,16 +364,16 @@

         [Exposed=Window]
         interface PerformanceNavigationTiming : PerformanceResourceTiming {
-            readonly        attribute DOMHighResTimeStamp unloadEventStart;
-            readonly        attribute DOMHighResTimeStamp unloadEventEnd;
-            readonly        attribute DOMHighResTimeStamp domInteractive;
-            readonly        attribute DOMHighResTimeStamp domContentLoadedEventStart;
-            readonly        attribute DOMHighResTimeStamp domContentLoadedEventEnd;
-            readonly        attribute DOMHighResTimeStamp domComplete;
-            readonly        attribute DOMHighResTimeStamp loadEventStart;
-            readonly        attribute DOMHighResTimeStamp loadEventEnd;
-            readonly        attribute NavigationType      type;
-            readonly        attribute unsigned short      redirectCount;
+            readonly        attribute DOMHighResTimeStamp  unloadEventStart;
+            readonly        attribute DOMHighResTimeStamp  unloadEventEnd;
+            readonly        attribute DOMHighResTimeStamp  domInteractive;
+            readonly        attribute DOMHighResTimeStamp  domContentLoadedEventStart;
+            readonly        attribute DOMHighResTimeStamp  domContentLoadedEventEnd;
+            readonly        attribute DOMHighResTimeStamp  domComplete;
+            readonly        attribute DOMHighResTimeStamp  loadEventStart;
+            readonly        attribute DOMHighResTimeStamp  loadEventEnd;
+            readonly        attribute NavigationTimingType type;
+            readonly        attribute unsigned short       redirectCount;
             [Default] object toJSON();
         };
         
@@ -390,7 +390,7 @@

number redirect count.

A PerformanceNavigationTiming has an associated - {{NavigationType}} navigation type. + {{NavigationTimingType}} navigation type.

A {{PerformanceNavigationTiming}} has an associated null or [=service worker timing info=] service worker timing. @@ -481,8 +481,8 @@

"FETCH#redirect-status">HTTP redirects by this spec. In those cases, the type attribute SHOULD return appropriate value, such as - reload if reloading the - current page, or navigate if + reload if reloading the + current page, or navigate if navigating to a new URL.

@@ -495,10 +495,10 @@

- NavigationType enum + NavigationTimingType enum

-            enum NavigationType {
+            enum NavigationTimingType {
                 "navigate",
                 "reload",
                 "back_forward",
@@ -508,7 +508,7 @@ 

The values are defined as follows:

-
+
navigate
@@ -585,7 +585,7 @@

Creating a navigation timing entry

To create the navigation timing entry for {{Document}} |document|, given a [=fetch timing info=] |fetchTiming|, a number |redirectCount|, a - {{NavigationType}} |navigationType|, and a null or [=service worker timing info=] |serviceWorkerTiming|, + {{NavigationTimingType}} |navigationType|, and a null or [=service worker timing info=] |serviceWorkerTiming|, do the following:

  1. Let |global| be |document|'s [=relevant global object=].