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

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/tests/qmltests/common/
H A Dappend-document-title.js0 document.title += " with appendix";
H A Dbig-user-script.js110 document.title = "Big user script changed title";
H A Dchange-document-title.js0 document.title = "New title";
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DMailQuirksUserScript.js34 // document.firstChild.firstChild == document.body. This is no longer true
38 if (document.head && !document.head.childNodes.length && !document.head.attributes.length)
39 document.documentElement.removeChild(document.head);
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.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/tests/resources/
H A Dlink-title.js1 window.document.getElementById('WebKitLink').title;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DContextFeatures.cpp53 bool ContextFeatures::dialogElementEnabled(Document* document) argument
56 if (!document)
58 return document->contextFeatures()->isEnabled(document, DialogElement, RuntimeEnabledFeatures::dialogElementEnabled());
60 UNUSED_PARAM(document);
65 bool ContextFeatures::styleScopedEnabled(Document* document) argument
68 if (!document)
70 return document->contextFeatures()->isEnabled(document, StyleScoped, RuntimeEnabledFeatures::styleScopedEnabled());
72 UNUSED_PARAM(document);
77 htmlNotificationsEnabled(Document* document) argument
89 mutationEventsEnabled(Document* document) argument
97 pushStateEnabled(Document* document) argument
107 provideContextFeaturesToDocumentFrom(Document* document, Page* page) argument
[all...]
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.9.5/WebCore-7537.78.1/loader/
H A DCookieJar.cpp39 static NetworkingContext* networkingContext(const Document* document) argument
42 if (!document)
44 Frame* frame = document->frame();
54 inline NetworkStorageSession& storageSession(const Document* document) argument
56 NetworkingContext* context = networkingContext(document);
59 #define LOCAL_SESSION(document) NetworkStorageSession& session = storageSession(document);
61 #define LOCAL_SESSION(document) NetworkStorageSession session(networkingContext(document));
64 String cookies(const Document* document, cons argument
70 setCookies(Document* document, const KURL& url, const String& cookieString) argument
76 cookiesEnabled(const Document* document) argument
82 cookieRequestHeaderFieldValue(const Document* document, const KURL& url) argument
88 getRawCookies(const Document* document, const KURL& url, Vector<Cookie>& cookies) argument
94 deleteCookie(const Document* document, const KURL& url, const String& cookieName) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DUnlinkCommand.cpp33 UnlinkCommand::UnlinkCommand(Document* document) argument
34 : CompositeEditCommand(document)
44 removeStyledElement(HTMLAnchorElement::create(document()));
/macosx-10.9.5/WebCore-7537.78.1/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));
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DTextViewSourceParser.cpp33 TextViewSourceParser::TextViewSourceParser(HTMLViewSourceDocument* document) argument
34 : HTMLViewSourceParser(document)
/macosx-10.9.5/WebCore-7537.78.1/svg/
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));

Completed in 128 milliseconds

1234567891011>>