Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. NotRestoredReasons

NotRestoredReasons

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.

TheNotRestoredReasons interface of thePerformance 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 thePerformanceNavigationTiming.notRestoredReasons property.

Instance properties

childrenRead onlyExperimental

An array ofNotRestoredReasons objects, 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>,children will returnnull.

idRead onlyExperimental

A string representing theid attribute value of the<iframe> the document is contained in (for example<iframe src="...">). If the document is not in an<iframe> or the<iframe> has noid set,id will returnnull.

nameRead onlyExperimental

A string representing thename attribute value of the<iframe> the document is contained in (for example<iframe name="bar" src="...">). If the document is not in an<iframe> or the<iframe> has noname set,name will returnnull.

reasonsRead onlyExperimental

An array ofNotRestoredReasonDetails objects, each representing a reason why the navigated page was blocked from using the bfcache. If the document is in a cross-origin<iframe>,reasons will returnnull, but the parent document may show areason of"masked" if any<iframe>s blocked bfcache usage for the top-level frame.

srcRead onlyExperimental

A string representing the path to the source of the<iframe> the document is contained in (for example<iframe src="exampleframe.html">). If the document is not in an<iframe>,src will returnnull.

urlRead onlyExperimental

A string representing the URL of the navigated page or<iframe>. If the document is in a cross-origin<iframe>,url will returnnull.

Instance methods

toJSON()Experimental

Aserializer; returns a JSON representation of theNotRestoredReasons object.

Examples

SeeMonitoring bfcache blocking reasons for examples.

Specifications

Specification
HTML
# notrestoredreasons

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp