Definition
Soft Navigations and Interaction Contentful Paint defines InteractionContentfulPaint
[Exposed=Window]
interface InteractionContentfulPaint : PerformanceEntry {
readonly attribute LargestContentfulPaint largestContentfulPaint;
readonly attribute unsigned long long interactionId;
[Default] object toJSON();
};
InteractionContentfulPaint includes PaintTimingMixin;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface InteractionContentfulPaint : PerformanceEntry {
readonly attribute LargestContentfulPaint largestContentfulPaint;
readonly attribute unsigned long long interactionId;
[Default] object toJSON();
readonly attribute DOMHighResTimeStamp paintTime;
readonly attribute DOMHighResTimeStamp? presentationTime;
};