Home | History | Annotate | Download | only in WebView

Lines Matching refs:subresource

161     @abstract Returns a subresource for a given URL.
162 @param URL The URL of the subresource.
163 @description Returns non-nil if the data source has fully downloaded a subresource with the given URL.
169 @abstract Adds a subresource to the data source.
170 @param subresource The subresource to be added.
171 @description addSubresource: adds a subresource to the data source's list of subresources.
172 Later, if something causes the data source to load the URL of the subresource, the data source
173 will load the data from the subresource instead of from the network. For example, if one wants to add
176 subresource with the same URL, addSubresource: will replace it.
178 - (void)addSubresource:(WebResource *)subresource;