HomeSort by relevance Sort by last modified time
    Searched full:webarchive (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/webkit/Source/WebKit/win/
WebArchive.cpp 28 #include "WebArchive.h"
36 // WebArchive ----------------------------------------------------------------
38 WebArchive* WebArchive::createInstance()
40 WebArchive* instance = new WebArchive(0);
45 WebArchive* WebArchive::createInstance(PassRefPtr<LegacyWebArchive> coreArchive)
47 WebArchive* instance = new WebArchive(coreArchive)
    [all...]
WebArchive.h 38 class WebArchive : public IWebArchive
41 static WebArchive* createInstance();
42 static WebArchive* createInstance(PassRefPtr<WebCore::LegacyWebArchive>);
44 WebArchive(PassRefPtr<WebCore::LegacyWebArchive>);
45 ~WebArchive();
  /cts/tests/tests/webkitsecurity/assets/
javascript-url-iframe-crash.html 8 window.location="resources/javascript-url-iframe-crash.webarchive";
mainresource-null-mimetype-crash.html 7 window.location="resources/mainresource-null-mimetype.webarchive";
cross-origin-stylesheet-crash.html 7 <link rel="stylesheet" href="http://localhost:8000/webarchive/resources/localhost-stylesheet.css" type="text/css">
11 Making a webarchive of this page should not crash.
javascript-url-iframe-crash.webarchive 5 _WebResourceTextEncodingName_WebResourceFrameName^WebResourceURL_WebResourceData_WebResourceMIMETypeUUTF-8P_nfile:///Volumes/Data/svn/OpenSource/LayoutTests/webarchive/loading/javascript-url-iframe-crash-webarchive.htmlO<html><head></head><body>
6 Loading this webarchive with a "non-empty javascript URL iframe" should not crash.<br>
cross-origin-stylesheet-crash-expected.webarchive 13 &lt;link rel="stylesheet" href="http://localhost:8000/webarchive/resources/localhost-stylesheet.css" type="text/css"&gt;
17 Making a webarchive of this page should not crash.
28 <string>http://127.0.0.1:8000/webarchive/cross-origin-stylesheet-crash.html</string>
43 <string>http://localhost:8000/webarchive/resources/localhost-stylesheet.css</string>
67 <string>http://localhost:8000/webarchive/resources/localhost-stylesheet.css</string>
  /external/webkit/Source/WebCore/manual-tests/
webarchive-test.html 3 <title>webarchive test</title>
6 <p>This test verifies that webarchive files larger than 4KB can be loaded. This functionality had previously regressed due to <a href="https://bugs.webkit.org/show_bug.cgi?id=36196">https://bugs.webkit.org/show_bug.cgi?id=36196</a>. If you see a snapshot of <a href="http://webkit.org">webkit.org</a> in the iframe below, the test passed.</p>
7 <iframe src="WebKitSite.webarchive" width="800" height="600"></iframe>
  /external/webkit/Source/WebKit/mac/WebView/
WebArchive.h 36 @abstract The pasteboard type constant used when adding or accessing a WebArchive on the pasteboard.
41 @class WebArchive
42 @discussion WebArchive represents a main resource as well as all the subresources and subframes associated with the main resource.
47 @interface WebArchive : NSObject <NSCoding, NSCopying>
55 @abstract The initializer for WebArchive.
59 @result An initialized WebArchive.
65 @abstract The initializer for creating a WebArchive from data.
66 @param data The data representing the archive. This can be obtained using WebArchive's data method.
67 @result An initialized WebArchive.
93 using WebArchivePboardType. To create a WebArchive using the returned data, call initWithData:
    [all...]
WebDataSource.h 37 @class WebArchive;
135 @method webArchive
136 @result A WebArchive representing the data source, its subresources and child frames.
137 @description This method constructs a WebArchive using the original downloaded data.
138 In the case of HTML, if the current state of the document is preferred, webArchive should be
141 - (WebArchive *)webArchive;
147 This method can be used to construct a WebArchive in case the archive returned by
148 WebDataSource's webArchive isn't sufficient.
WebDataSourceInternal.h 40 @class WebArchive;
51 - (DOMDocumentFragment *)_documentFragmentWithArchive:(WebArchive *)archive;
53 - (void)_replaceSelectionWithArchive:(WebArchive *)archive selectReplacement:(BOOL)selectReplacement;
WebArchiveInternal.h 29 #import "WebArchive.h"
36 @interface WebArchive (WebInternal)
WebArchive.mm 29 #import "WebArchive.h"
122 @implementation WebArchive
175 if (!subframeArchives || isArrayOfClass(subframeArchives, [WebArchive class]))
192 WebArchive *subframeArchive;
249 if (isArrayOfClass(object, [WebArchive class]))
350 WebArchive *archive = [[WebArchive alloc] _initWithCoreLegacyWebArchive:(LegacyWebArchive *)subframeArchives[i].get()];
381 @implementation WebArchive (WebInternal)
WebDataSource.mm 31 #import "WebArchive.h"
167 WebArchive *archive;
281 - (void)_replaceSelectionWithArchive:(WebArchive *)archive selectReplacement:(BOOL)selectReplacement
289 - (DOMDocumentFragment *)_documentFragmentWithArchive:(WebArchive *)archive
490 - (WebArchive *)webArchive
492 // it makes no sense to grab a WebArchive from an uncommitted document.
496 return [[[WebArchive alloc] _initWithCoreLegacyWebArchive:LegacyWebArchive::create(core([self webFrame]))] autorelease];
  /external/webkit/Source/WebKit/mac/DOM/
WebDOMOperations.h 33 @class WebArchive;
39 @method webArchive
40 @result A WebArchive representing the node and the children of the node.
42 - (WebArchive *)webArchive;
68 @method webArchive
69 @result A WebArchive representing the range.
71 - (WebArchive *)webArchive;
WebDOMOperations.mm 88 - (WebArchive *)webArchive
90 return [[[WebArchive alloc] _initWithCoreLegacyWebArchive:LegacyWebArchive::create(core(self))] autorelease];
176 - (WebArchive *)webArchive
178 return [[[WebArchive alloc] _initWithCoreLegacyWebArchive:LegacyWebArchive::create(core(self))] autorelease];
  /external/webkit/Source/WebKit/win/Interfaces/
IWebArchive.idl 36 @class WebArchive
37 @discussion WebArchive represents a main resource as well as all the subresources and subframes associated with the main resource.
52 @abstract The initializer for WebArchive.
56 @result An initialized WebArchive.
63 @abstract The initializer for creating a WebArchive from data.
64 @param data The data representing the archive. This can be obtained using WebArchive's data method.
65 @result An initialized WebArchive.
72 @abstract The initializer for creating a WebArchive from data.
73 @param data The data representing the archive. This can be obtained using WebArchive's data method.
74 @result An initialized WebArchive
    [all...]
IWebDataSource.idl 155 @method webArchive
156 @result A WebArchive representing the data source, its subresources and child frames.
157 @description This method constructs a WebArchive using the original downloaded data.
158 In the case of HTML, if the current state of the document is preferred, webArchive should be
160 - (WebArchive *)webArchive;
162 HRESULT webArchive([out, retval] IWebArchive** archive);
168 This method can be used to construct a WebArchive in case the archive returned by
169 WebDataSource's webArchive isn't sufficient.
  /external/webkit/Source/WebKit/mac/Misc/
WebNSPasteboardExtras.h 32 @class WebArchive;
73 archive:(WebArchive *)archive
80 archive:(WebArchive *)archive
83 - (void)_web_writePromisedRTFDFromArchive:(WebArchive*)archive containsImage:(BOOL)containsImage;
WebNSPasteboardExtras.mm 32 #import "WebArchive.h"
198 - (void)_web_writePromisedRTFDFromArchive:(WebArchive*)archive containsImage:(BOOL)containsImage
233 archive:(WebArchive *)archive
264 archive:(WebArchive *)archive
  /external/webkit/Source/WebCore/loader/archive/
ArchiveFactory.cpp 66 mimeTypes.set("application/x-webarchive", archiveFactoryCreate<LegacyWebArchive>);
68 mimeTypes.set("application/x-webarchive-xml", archiveFactoryCreate<WebArchiveAndroid>);
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCGWin.cpp 71 UTIMap.add("com.apple.webarchive", "webarchive");
  /external/webkit/Source/WebCore/platform/win/
MIMETypeRegistryWin.cpp 87 mimetypeMap.add("webarchive", "application/x-webarchive");
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm 28 #import "WebArchive.h"
128 WebArchive *archive = [element webArchive];
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm 62 #import <WebKit/WebArchive.h>
    [all...]

Completed in 391 milliseconds

1 2 3