ApplicationCache Domain
Methods
getFramesWithManifests#
Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.
Return object
- frameIds
- array [ FrameWithManifest ] Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.
enable#
Enables application cache domain notifications.
getManifestForFrame#
Returns manifest URL for document in the given frame.
Parameters
- frameId
- Page.FrameId Identifier of the frame containing document whose manifest is retrieved.
Return object
- manifestURL
- string Manifest URL for document in the given frame.
getApplicationCacheForFrame#
Returns relevant application cache data for the document in given frame.
Parameters
- frameId
- Page.FrameId Identifier of the frame containing document whose application cache is retrieved.
Return object
- applicationCache
- ApplicationCache Relevant application cache data for the document in given frame.
Events
applicationCacheStatusUpdated#
Parameters
- frameId
- Page.FrameId Identifier of the frame containing document whose application cache updated status.
- manifestURL
- string Manifest URL.
- status
- integer Updated application cache status.
Types
ApplicationCacheResource#
Detailed application cache resource information.
Type: object
Properties
- url
- string Resource url.
- size
- integer Resource size.
- type
- string Resource type.
ApplicationCache#
Detailed application cache information.
Type: object
Properties
- manifestURL
- string Manifest URL.
- size
- number Application cache size.
- creationTime
- number Application cache creation time.
- updateTime
- number Application cache update time.
- resources
- array [ ApplicationCacheResource ] Application cache resources.
FrameWithManifest#
Frame identifier - manifest URL pair.
Type: object
Properties
- frameId
- Page.FrameId Frame identifier.
- manifestURL
- string Manifest URL.
- status
- integer Application cache status.