Definition
Container Timing API defines PerformanceContainerTiming
[Exposed=Window]
interface PerformanceContainerTiming : PerformanceEntry {
readonly attribute DOMString identifier;
readonly attribute DOMRectReadOnly intersectionRect;
readonly attribute unsigned long long size;
readonly attribute DOMHighResTimeStamp firstRenderTime;
readonly attribute Element? lastPaintedElement;
readonly attribute Element? rootElement;
};
PerformanceContainerTiming includes PaintTimingMixin;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface PerformanceContainerTiming : PerformanceEntry {
readonly attribute DOMString identifier;
readonly attribute DOMRectReadOnly intersectionRect;
readonly attribute unsigned long long size;
readonly attribute DOMHighResTimeStamp firstRenderTime;
readonly attribute Element? lastPaintedElement;
readonly attribute Element? rootElement;
readonly attribute DOMHighResTimeStamp paintTime;
readonly attribute DOMHighResTimeStamp? presentationTime;
};