web api interface
NotRestoredReasons
Limited availability
The NotRestoredReasons interface of the Performance API provides report data containing reasons why the current document was blocked from using the back/forward cache (bfcache) on navigation.
These objects are accessed via the notRestoredReasons property.
Instance properties
childrenRead only Experimental- : An array of
NotRestoredReasonsobjects, one for each child<iframe>embedded in the current document, which may contain reasons why the top-level frame was blocked relating to the child frames. Each object has the same structure as the parent object — this way, any number of levels of embedded<iframe>s can be represented inside the object recursively. If the frame has no children, the array will be empty; if the document is in a cross-origin<iframe>,childrenwill returnnull.
- : An array of
idRead only Experimental- : A string representing the
idattribute value of the<iframe>the document is contained in (for example<iframe id="foo" src="/firefox/mdn-asset-missing.svg">). If the document is not in an<iframe>or the<iframe>has noidset,idwill returnnull.
- : A string representing the
nameRead only Experimental- : A string representing the
nameattribute value of the<iframe>the document is contained in (for example<iframe name="bar" src="/firefox/mdn-asset-missing.svg">). If the document is not in an<iframe>or the<iframe>has nonameset,namewill returnnull.
- : A string representing the
reasonsRead only Experimental- : An array of
NotRestoredReasonDetailsobjects, each representing a reason why the navigated page was blocked from using the bfcache. If the document is in a cross-origin<iframe>,reasonswill returnnull, but the parent document may show areasonof"masked"if any<iframe>s blocked bfcache usage for the top-level frame.
- : An array of
srcRead only Experimental- : A string representing the path to the source of the
<iframe>the document is contained in (for example<iframe src="/firefox/mdn-asset-missing.svg">). If the document is not in an<iframe>,srcwill returnnull.
- : A string representing the path to the source of the
urlRead only Experimental- : A string representing the URL of the navigated page or
<iframe>. If the document is in a cross-origin<iframe>,urlwill returnnull.
- : A string representing the URL of the navigated page or
Instance methods
toJSON()Experimental- : A serializer; returns a JSON representation of the
NotRestoredReasonsobject.
- : A serializer; returns a JSON representation of the
Examples
See Monitoring bfcache blocking reasons for examples.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.