Searched refs:document (Results 1 - 25 of 1295) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DOutlookQuirksUserScript.js26 // This should only apply to the initial empty document, which should look like:
28 if (document.documentElement.outerHTML != "<html><head></head><body></body></html>")
31 // Outlook expects the initial empty document to only contain the document
33 document.documentElement.removeChild(document.head);
34 document.documentElement.removeChild(document.body);
/macosx-10.10/WebCore-7600.1.25/crypto/
H A DSubtleCrypto.cpp35 SubtleCrypto::SubtleCrypto(Document& document) argument
36 : ContextDestructionObserver(&document)
40 Document* SubtleCrypto::document() const function in class:WebCore::SubtleCrypto
/macosx-10.10/WebCore-7600.1.25/dom/
H A DScriptableDocumentParser.cpp36 ScriptableDocumentParser::ScriptableDocumentParser(Document& document, ParserContentPolicy parserContentPolicy) argument
37 : DecodedDataDocumentParser(document)
41 if (!pluginContentIsAllowed(m_parserContentPolicy) && (!document.settings() || document.settings()->unsafePluginPastingEnabled()))
44 if (scriptingContentIsAllowed(m_parserContentPolicy) && (document.settings() && !document.settings()->scriptMarkupEnabled()))
/macosx-10.10/WebCore-7600.1.25/loader/
H A DCookieJar.cpp39 static NetworkingContext* networkingContext(const Document* document) argument
42 if (!document)
44 Frame* frame = document->frame();
52 inline NetworkStorageSession& storageSession(const Document* document) argument
54 NetworkingContext* context = networkingContext(document);
57 #define LOCAL_SESSION(document) NetworkStorageSession& session = storageSession(document);
59 #define LOCAL_SESSION(document) NetworkStorageSession session(networkingContext(document));
62 String cookies(const Document* document, cons argument
68 setCookies(Document* document, const URL& url, const String& cookieString) argument
74 cookiesEnabled(const Document* document) argument
80 cookieRequestHeaderFieldValue(const Document* document, const URL& url) argument
86 getRawCookies(const Document* document, const URL& url, Vector<Cookie>& cookies) argument
92 deleteCookie(const Document* document, const URL& url, const String& cookieName) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/editing/
H A DUnlinkCommand.cpp33 UnlinkCommand::UnlinkCommand(Document& document) argument
34 : CompositeEditCommand(document)
44 removeStyledElement(HTMLAnchorElement::create(document()));
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLHeadElement.cpp34 HTMLHeadElement::HTMLHeadElement(const QualifiedName& tagName, Document& document) argument
35 : HTMLElement(tagName, document)
40 PassRefPtr<HTMLHeadElement> HTMLHeadElement::create(Document& document) argument
42 return adoptRef(new HTMLHeadElement(headTag, document));
45 PassRefPtr<HTMLHeadElement> HTMLHeadElement::create(const QualifiedName& tagName, Document& document) argument
47 return adoptRef(new HTMLHeadElement(tagName, document));
H A DHTMLHtmlElement.cpp39 HTMLHtmlElement::HTMLHtmlElement(const QualifiedName& tagName, Document& document) argument
40 : HTMLElement(tagName, document)
45 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(Document& document) argument
47 return adoptRef(new HTMLHtmlElement(htmlTag, document));
50 PassRefPtr<HTMLHtmlElement> HTMLHtmlElement::create(const QualifiedName& tagName, Document& document) argument
52 return adoptRef(new HTMLHtmlElement(tagName, document));
62 // When parsing a fragment, its dummy document has a null parser.
63 if (!document().parser() || !document().parser()->documentWasLoadedAsPartOfNavigation())
66 if (!document()
[all...]
H A DHTMLBDIElement.h30 static PassRefPtr<HTMLBDIElement> create(const QualifiedName& name, Document& document) argument
32 return adoptRef(new HTMLBDIElement(name, document));
36 HTMLBDIElement(const QualifiedName& name, Document& document) argument
37 : HTMLElement(name, document)
H A DHTMLBaseFontElement.cpp32 inline HTMLBaseFontElement::HTMLBaseFontElement(const QualifiedName& tagName, Document& document) argument
33 : HTMLElement(tagName, document)
38 PassRefPtr<HTMLBaseFontElement> HTMLBaseFontElement::create(const QualifiedName& tagName, Document& document) argument
40 return adoptRef(new HTMLBaseFontElement(tagName, document));
H A DHTMLDListElement.cpp32 inline HTMLDListElement::HTMLDListElement(const QualifiedName& tagName, Document& document) argument
33 : HTMLElement(tagName, document)
38 PassRefPtr<HTMLDListElement> HTMLDListElement::create(const QualifiedName& tagName, Document& document) argument
40 return adoptRef(new HTMLDListElement(tagName, document));
H A DHTMLDirectoryElement.cpp32 inline HTMLDirectoryElement::HTMLDirectoryElement(const QualifiedName& tagName, Document& document) argument
33 : HTMLElement(tagName, document)
38 PassRefPtr<HTMLDirectoryElement> HTMLDirectoryElement::create(const QualifiedName& tagName, Document& document) argument
40 return adoptRef(new HTMLDirectoryElement(tagName, document));
H A DHTMLHeadingElement.cpp28 inline HTMLHeadingElement::HTMLHeadingElement(const QualifiedName& tagName, Document& document) argument
29 : HTMLElement(tagName, document)
33 PassRefPtr<HTMLHeadingElement> HTMLHeadingElement::create(const QualifiedName& tagName, Document& document) argument
35 return adoptRef(new HTMLHeadingElement(tagName, document));
H A DHTMLMenuElement.cpp32 inline HTMLMenuElement::HTMLMenuElement(const QualifiedName& tagName, Document& document) argument
33 : HTMLElement(tagName, document)
38 PassRefPtr<HTMLMenuElement> HTMLMenuElement::create(const QualifiedName& tagName, Document& document) argument
40 return adoptRef(new HTMLMenuElement(tagName, document));
H A DHTMLSpanElement.cpp35 HTMLSpanElement::HTMLSpanElement(const QualifiedName& tagName, Document& document) argument
36 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLSpanElement> HTMLSpanElement::create(const QualifiedName& tagName, Document& document) argument
43 return adoptRef(new HTMLSpanElement(tagName, document));
H A DHTMLUnknownElement.h39 static PassRefPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document) argument
41 return adoptRef(new HTMLUnknownElement(tagName, document));
45 HTMLUnknownElement(const QualifiedName& tagName, Document& document) argument
46 : HTMLElement(tagName, document, CreateHTMLUnknownElement)
/macosx-10.10/WebCore-7600.1.25/pdf/ios/
H A DPDFDocument.cpp37 static PassRefPtr<PDFDocumentParser> create(PDFDocument& document) argument
39 return adoptRef(new PDFDocumentParser(document));
42 PDFDocument* document() const function in class:WebCore::PDFDocumentParser
44 return static_cast<PDFDocument*>(RawDataDocumentParser::document());
48 PDFDocumentParser(PDFDocument& document) argument
49 : RawDataDocumentParser(document)
/macosx-10.10/WebCore-7600.1.25/html/shadow/
H A DImageControlsRootElement.cpp34 PassRefPtr<ImageControlsRootElement> ImageControlsRootElement::maybeCreate(Document& document) argument
36 return adoptRef(new ImageControlsRootElement(document));
40 ImageControlsRootElement::ImageControlsRootElement(Document& document) argument
41 : HTMLDivElement(HTMLNames::divTag, document)
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGDescElement.cpp28 inline SVGDescElement::SVGDescElement(const QualifiedName& tagName, Document& document) argument
29 : SVGElement(tagName, document)
34 PassRefPtr<SVGDescElement> SVGDescElement::create(const QualifiedName& tagName, Document& document) argument
36 return adoptRef(new SVGDescElement(tagName, document));
H A DSVGFEFuncAElement.cpp29 inline SVGFEFuncAElement::SVGFEFuncAElement(const QualifiedName& tagName, Document& document) argument
30 : SVGComponentTransferFunctionElement(tagName, document)
35 PassRefPtr<SVGFEFuncAElement> SVGFEFuncAElement::create(const QualifiedName& tagName, Document& document) argument
37 return adoptRef(new SVGFEFuncAElement(tagName, document));
H A DSVGFEFuncBElement.cpp29 inline SVGFEFuncBElement::SVGFEFuncBElement(const QualifiedName& tagName, Document& document) argument
30 : SVGComponentTransferFunctionElement(tagName, document)
35 PassRefPtr<SVGFEFuncBElement> SVGFEFuncBElement::create(const QualifiedName& tagName, Document& document) argument
37 return adoptRef(new SVGFEFuncBElement(tagName, document));
H A DSVGFEFuncGElement.cpp29 inline SVGFEFuncGElement::SVGFEFuncGElement(const QualifiedName& tagName, Document& document) argument
30 : SVGComponentTransferFunctionElement(tagName, document)
35 PassRefPtr<SVGFEFuncGElement> SVGFEFuncGElement::create(const QualifiedName& tagName, Document& document) argument
37 return adoptRef(new SVGFEFuncGElement(tagName, document));
H A DSVGFEFuncRElement.cpp29 inline SVGFEFuncRElement::SVGFEFuncRElement(const QualifiedName& tagName, Document& document) argument
30 : SVGComponentTransferFunctionElement(tagName, document)
35 PassRefPtr<SVGFEFuncRElement> SVGFEFuncRElement::create(const QualifiedName& tagName, Document& document) argument
37 return adoptRef(new SVGFEFuncRElement(tagName, document));
H A DSVGMetadataElement.cpp28 inline SVGMetadataElement::SVGMetadataElement(const QualifiedName& tagName, Document& document) argument
29 : SVGElement(tagName, document)
34 PassRefPtr<SVGMetadataElement> SVGMetadataElement::create(const QualifiedName& tagName, Document& document) argument
36 return adoptRef(new SVGMetadataElement(tagName, document));
H A DSVGMissingGlyphElement.cpp28 inline SVGMissingGlyphElement::SVGMissingGlyphElement(const QualifiedName& tagName, Document& document) argument
29 : SVGElement(tagName, document)
34 PassRefPtr<SVGMissingGlyphElement> SVGMissingGlyphElement::create(const QualifiedName& tagName, Document& document) argument
36 return adoptRef(new SVGMissingGlyphElement(tagName, document));
H A DSVGPolygonElement.cpp28 inline SVGPolygonElement::SVGPolygonElement(const QualifiedName& tagName, Document& document) argument
29 : SVGPolyElement(tagName, document)
34 PassRefPtr<SVGPolygonElement> SVGPolygonElement::create(const QualifiedName& tagName, Document& document) argument
36 return adoptRef(new SVGPolygonElement(tagName, document));

Completed in 264 milliseconds

1234567891011>>