diff --git a/index.html b/index.html index a656902..9dc4a8e 100644 --- a/index.html +++ b/index.html @@ -380,6 +380,7 @@

readonly attribute unsigned long long transferSize; readonly attribute unsigned long long encodedBodySize; readonly attribute unsigned long long decodedBodySize; + readonly attribute RenderBlockingStatusType renderBlockingStatus; [Default] object toJSON(); }; @@ -409,6 +410,11 @@

info=] resource info.

+

+ A PerformanceResourceTiming has an associated + {{RenderBlockingStatusType}} render-blocking status. +

The PerformanceResourceTiming interface participates in the

+

+ The renderBlockingStatus getter steps are to return + blocking + if this's timing + info's [=fetch timing info/render-blocking=] is true; otherwise + non-blocking. +

A user agent implementing PerformanceResourceTiming would need to include "resource" in {{PerformanceObserver/supportedEntryTypes}}. This allows developers to detect support for Resource Timing.

+
+

+ RenderBlockingStatusType enum +

+
+            enum RenderBlockingStatusType {
+                "blocking",
+                "non-blocking"
+            };
+          
+

+ The values are defined as follows: +

+
+
+ blocking +
+
+ The resource can potentially block rendering. +
+
+ non-blocking +
+
+ The resource will not block rendering. +
+
+