largest-contentful-paint.idl (640B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Largest Contentful Paint (https://w3c.github.io/largest-contentful-paint/) 5 6 [Exposed=Window] 7 interface LargestContentfulPaint : PerformanceEntry { 8 readonly attribute DOMHighResTimeStamp loadTime; 9 readonly attribute DOMHighResTimeStamp renderTime; 10 readonly attribute unsigned long size; 11 readonly attribute DOMString id; 12 readonly attribute DOMString url; 13 readonly attribute Element? element; 14 [Default] object toJSON(); 15 }; 16 17 LargestContentfulPaint includes PaintTimingMixin;