WebIDLpedia

PerformanceSoftNavigation interface

Definition

Soft Navigations and Interaction Contentful Paint defines PerformanceSoftNavigation



[Exposed=Window]
interface PerformanceSoftNavigation : PerformanceEntry {
    readonly attribute NavigationType navigationType;
    readonly attribute unsigned long long interactionId;
    InteractionContentfulPaint? getLargestInteractionContentfulPaint();

    [Default] object toJSON();
};

PerformanceSoftNavigation includes PaintTimingMixin;
Consolidated IDL (across mixin and partials)


[Exposed=Window]
interface PerformanceSoftNavigation : PerformanceEntry {
    readonly attribute NavigationType navigationType;
    readonly attribute unsigned long long interactionId;
    InteractionContentfulPaint? getLargestInteractionContentfulPaint();

    [Default] object toJSON();
    readonly attribute DOMHighResTimeStamp paintTime;
    readonly attribute DOMHighResTimeStamp? presentationTime;
};