Searched defs:document (Results 226 - 250 of 496) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/
H A DHTMLButtonElement.cpp43 inline HTMLButtonElement::HTMLButtonElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
44 : HTMLFormControlElement(tagName, document, form)
51 PassRefPtr<HTMLButtonElement> HTMLButtonElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
53 return adoptRef(new HTMLButtonElement(tagName, document, form));
H A DHTMLDataGridColElement.cpp41 inline HTMLDataGridColElement::HTMLDataGridColElement(const QualifiedName& name, Document* document) argument
42 : HTMLElement(name, document)
47 PassRefPtr<HTMLDataGridColElement> HTMLDataGridColElement::create(const QualifiedName& name, Document* document) argument
49 return adoptRef(new HTMLDataGridColElement(name, document));
H A DHTMLDetailsElement.cpp35 PassRefPtr<HTMLDetailsElement> HTMLDetailsElement::create(const QualifiedName& tagName, Document* document) argument
37 return adoptRef(new HTMLDetailsElement(tagName, document));
40 HTMLDetailsElement::HTMLDetailsElement(const QualifiedName& tagName, Document* document) argument
41 : HTMLElement(tagName, document)
101 RefPtr<HTMLSummaryElement> defaultSummary = HTMLSummaryElement::create(summaryTag, document());
103 defaultSummary->appendChild(Text::create(document(), defaultDetailsSummaryText()), ec);
H A DHTMLFrameSetElement.cpp45 HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document* document) argument
46 : HTMLElement(tagName, document)
59 PassRefPtr<HTMLFrameSetElement> HTMLFrameSetElement::create(const QualifiedName& tagName, Document* document) argument
61 return adoptRef(new HTMLFrameSetElement(tagName, document));
115 document()->setWindowAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(document()->frame(), attr));
117 document()->setWindowAttributeEventListener(eventNames().beforeunloadEvent, createAttributeEventListener(document()->frame(), attr));
119 document()->setWindowAttributeEventListener(eventNames().unloadEvent, createAttributeEventListener(document()
[all...]
H A DHTMLIFrameElement.cpp39 inline HTMLIFrameElement::HTMLIFrameElement(const QualifiedName& tagName, Document* document) argument
40 : HTMLFrameElementBase(tagName, document)
45 PassRefPtr<HTMLIFrameElement> HTMLIFrameElement::create(const QualifiedName& tagName, Document* document) argument
47 return adoptRef(new HTMLIFrameElement(tagName, document));
116 if (inDocument() && document()->isHTMLDocument()) {
117 HTMLDocument* document = static_cast<HTMLDocument*>(this->document()); local
118 document->removeExtraNamedItem(m_name);
119 document->addExtraNamedItem(newName);
146 if (document()
[all...]
H A DHTMLKeygenElement.cpp47 static PassRefPtr<KeygenSelectElement> create(Document* document) argument
49 return adoptRef(new KeygenSelectElement(document));
59 KeygenSelectElement(Document* document) argument
60 : HTMLSelectElement(selectTag, document, 0)
65 inline HTMLKeygenElement::HTMLKeygenElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
66 : HTMLFormControlElementWithState(tagName, document, form)
74 RefPtr<HTMLSelectElement> select = KeygenSelectElement::create(document);
77 RefPtr<HTMLOptionElement> option = HTMLOptionElement::create(document, this->form());
79 option->appendChild(Text::create(document, keys[i]), ec);
85 PassRefPtr<HTMLKeygenElement> HTMLKeygenElement::create(const QualifiedName& tagName, Document* document, HTMLFormElemen argument
[all...]
H A DHTMLLabelElement.cpp51 inline HTMLLabelElement::HTMLLabelElement(const QualifiedName& tagName, Document* document) argument
52 : HTMLElement(tagName, document)
57 PassRefPtr<HTMLLabelElement> HTMLLabelElement::create(const QualifiedName& tagName, Document* document) argument
59 return adoptRef(new HTMLLabelElement(tagName, document));
84 return nodeAsLabelableFormControl(document()->getElementById(controlId));
162 if (document())
163 document()->notifyLocalNodeListsLabelChanged();
H A DHTMLMapElement.cpp41 HTMLMapElement::HTMLMapElement(const QualifiedName& tagName, Document* document) argument
42 : HTMLElement(tagName, document)
47 PassRefPtr<HTMLMapElement> HTMLMapElement::create(Document* document) argument
49 return adoptRef(new HTMLMapElement(mapTag, document));
52 PassRefPtr<HTMLMapElement> HTMLMapElement::create(const QualifiedName& tagName, Document* document) argument
54 return adoptRef(new HTMLMapElement(tagName, document));
85 RefPtr<HTMLCollection> coll = document()->images();
108 Document* document = this->document(); local
112 if (document
[all...]
H A DHTMLMarqueeElement.cpp41 inline HTMLMarqueeElement::HTMLMarqueeElement(const QualifiedName& tagName, Document* document) argument
42 : HTMLElement(tagName, document)
43 , ActiveDOMObject(document, this)
49 PassRefPtr<HTMLMarqueeElement> HTMLMarqueeElement::create(const QualifiedName& tagName, Document* document) argument
51 return adoptRef(new HTMLMarqueeElement(tagName, document));
H A DHTMLOptGroupElement.cpp40 inline HTMLOptGroupElement::HTMLOptGroupElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
41 : HTMLFormControlElement(tagName, document, form)
46 PassRefPtr<HTMLOptGroupElement> HTMLOptGroupElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
48 return adoptRef(new HTMLOptGroupElement(tagName, document, form));
114 String itemText = document()->displayStringModifiedByEncoding(getAttribute(labelAttr));
H A DHTMLOutputElement.cpp39 inline HTMLOutputElement::HTMLOutputElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
40 : HTMLFormControlElement(tagName, document, form)
48 PassRefPtr<HTMLOutputElement> HTMLOutputElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
50 return adoptRef(new HTMLOutputElement(tagName, document, form));
H A DHTMLStyleElement.cpp38 inline HTMLStyleElement::HTMLStyleElement(const QualifiedName& tagName, Document* document, bool createdByParser) argument
39 : HTMLElement(tagName, document)
40 , StyleElement(document, createdByParser)
51 PassRefPtr<HTMLStyleElement> HTMLStyleElement::create(const QualifiedName& tagName, Document* document, bool createdByParser) argument
53 return adoptRef(new HTMLStyleElement(tagName, document, createdByParser));
75 StyleElement::insertedIntoDocument(document(), this);
81 StyleElement::removedFromDocument(document(), this);
H A DHTMLTableRowElement.cpp41 HTMLTableRowElement::HTMLTableRowElement(const QualifiedName& tagName, Document* document) argument
42 : HTMLTablePartElement(tagName, document)
47 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(Document* document) argument
49 return adoptRef(new HTMLTableRowElement(trTag, document));
52 PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(const QualifiedName& tagName, Document* document) argument
54 return adoptRef(new HTMLTableRowElement(tagName, document));
130 RefPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document());
H A DHTMLTableSectionElement.cpp40 inline HTMLTableSectionElement::HTMLTableSectionElement(const QualifiedName& tagName, Document* document) argument
41 : HTMLTablePartElement(tagName, document)
45 PassRefPtr<HTMLTableSectionElement> HTMLTableSectionElement::create(const QualifiedName& tagName, Document* document) argument
47 return adoptRef(new HTMLTableSectionElement(tagName, document));
71 row = HTMLTableRowElement::create(trTag, document());
H A DHTMLTitleElement.cpp35 inline HTMLTitleElement::HTMLTitleElement(const QualifiedName& tagName, Document* document) argument
36 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLTitleElement> HTMLTitleElement::create(const QualifiedName& tagName, Document* document) argument
43 return adoptRef(new HTMLTitleElement(tagName, document));
49 document()->setTitleElement(m_title, this);
55 document()->removeTitle(this);
62 document()->setTitleElement(m_title, this);
104 appendChild(document()->createTextNode(valueCopy.impl()), ec);
H A DHTMLTrackElement.cpp41 inline HTMLTrackElement::HTMLTrackElement(const QualifiedName& tagName, Document* document) argument
42 : HTMLElement(tagName, document)
48 PassRefPtr<HTMLTrackElement> HTMLTrackElement::create(const QualifiedName& tagName, Document* document) argument
50 return adoptRef(new HTMLTrackElement(tagName, document));
73 return document()->completeURL(getAttribute(srcAttr));
H A DPluginDocument.cpp49 static PassRefPtr<PluginDocumentParser> create(PluginDocument* document) argument
51 return adoptRef(new PluginDocumentParser(document));
55 PluginDocumentParser(Document* document) argument
56 : RawDataDocumentParser(document)
71 RefPtr<Element> rootElement = document()->createElement(htmlTag, false);
72 document()->appendChild(rootElement, ec);
77 if (document()->frame() && document()->frame()->loader())
78 document()->frame()->loader()->dispatchDocumentElementAvailable();
80 RefPtr<Element> body = document()
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLPreloadScanner.cpp123 void preload(Document* document, bool scanningBody) argument
128 CachedResourceLoader* cachedResourceLoader = document->cachedResourceLoader();
150 HTMLPreloadScanner::HTMLPreloadScanner(Document* document) argument
151 : m_document(document)
152 , m_cssScanner(document)
153 , m_tokenizer(HTMLTokenizer::create(HTMLDocumentParser::usePreHTML5ParserQuirks(document)))
167 // the pending script doesn't end up calling document.write.
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.h121 Document* document() const { return visibleNode ? visibleNode->document() : 0; } function in struct:WebCore::FocusCandidate
/external/webkit/Source/WebCore/platform/network/soup/
H A DCookieJarSoup.cpp60 void setCookies(Document* document, const KURL& url, const String& value) argument
68 GOwnPtr<SoupURI> firstParty(soup_uri_new(document->firstPartyForCookies().string().utf8().data()));
76 String cookies(const Document* /*document*/, const KURL& url)
92 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
108 bool cookiesEnabled(const Document* /*document*/)
/external/webkit/Source/WebCore/platform/network/win/
H A DCookieJarWin.cpp39 void setCookies(Document* /*document*/, const KURL& url, const String& value)
41 // FIXME: Deal with document->firstPartyForCookies().
47 String cookies(const Document* /*document*/, const KURL& url)
66 String cookieRequestHeaderFieldValue(const Document* document, const KURL& url) argument
69 return cookies(document, url);
72 bool cookiesEnabled(const Document* /*document*/)
/external/webkit/Source/WebCore/platform/qt/
H A DCookieJarQt.cpp45 static QNetworkCookieJar *cookieJar(const Document *document) argument
47 if (!document)
49 Frame* frame = document->frame();
60 void setCookies(Document* document, const KURL& url, const String& value) argument
63 QUrl p(document->firstPartyForCookies());
64 QNetworkCookieJar* jar = cookieJar(document);
79 String cookies(const Document* document, const KURL& url) argument
82 QNetworkCookieJar* jar = cookieJar(document);
100 String cookieRequestHeaderFieldValue(const Document* document, const KURL &url) argument
103 QNetworkCookieJar* jar = cookieJar(document);
118 cookiesEnabled(const Document* document) argument
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGInlineFlowBox.cpp95 Document* document = textRenderer->document(); local
96 Vector<DocumentMarker> markers = document->markers()->markersForNode(textRenderer->node());
141 document->markers()->setRenderedRectForMarker(node, marker, textRenderer->localToAbsoluteQuad(markerRect).enclosingBoundingBox());
H A DSVGResourcesCache.cpp92 Document* document = renderer->document(); local
93 ASSERT(document);
95 SVGDocumentExtensions* extensions = document->accessSVGExtensions();
/external/webkit/Source/WebCore/svg/
H A DSVGAElement.cpp55 inline SVGAElement::SVGAElement(const QualifiedName& tagName, Document* document) argument
56 : SVGStyledTransformableElement(tagName, document)
60 PassRefPtr<SVGAElement> SVGAElement::create(const QualifiedName& tagName, Document* document) argument
62 return adoptRef(new SVGAElement(tagName, document));
167 Element* targetElement = document()->getElementById(url.substring(1));
188 handleLinkClick(event, document(), url, target);
221 if (!document()->frame())
224 return document()->frame()->eventHandler()->tabsToLinks(event);

Completed in 353 milliseconds

1234567891011>>