Searched defs:document (Results 101 - 125 of 714) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDataListElement.cpp43 inline HTMLDataListElement::HTMLDataListElement(Document& document) argument
44 : HTMLElement(HTMLNames::datalistTag, document)
48 PassRefPtrWillBeRawPtr<HTMLDataListElement> HTMLDataListElement::create(Document& document) argument
50 UseCounter::count(document, UseCounter::DataListElement);
51 return adoptRefWillBeNoop(new HTMLDataListElement(document));
H A DHTMLFontElement.cpp41 inline HTMLFontElement::HTMLFontElement(Document& document) argument
42 : HTMLElement(fontTag, document)
H A DHTMLModElement.cpp32 inline HTMLModElement::HTMLModElement(const QualifiedName& tagName, Document& document) argument
33 : HTMLElement(tagName, document)
H A DHTMLParamElement.cpp34 inline HTMLParamElement::HTMLParamElement(Document& document) argument
35 : HTMLElement(paramTag, document)
45 return document().isHTMLDocument() ? emptyAtom : getIdAttribute();
H A DHTMLPreElement.cpp35 inline HTMLPreElement::HTMLPreElement(const QualifiedName& tagName, Document& document) argument
36 : HTMLElement(tagName, document)
H A DHTMLQuoteElement.cpp33 inline HTMLQuoteElement::HTMLQuoteElement(const QualifiedName& tagName, Document& document) argument
34 : HTMLElement(tagName, document)
H A DHTMLUListElement.cpp33 inline HTMLUListElement::HTMLUListElement(Document& document) argument
34 : HTMLElement(ulTag, document)
H A DHTMLUnknownElement.h40 static PassRefPtrWillBeRawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document) argument
42 return adoptRefWillBeNoop(new HTMLUnknownElement(tagName, document));
48 HTMLUnknownElement(const QualifiedName& tagName, Document& document) argument
49 : HTMLElement(tagName, document) { }
H A DLabelableElement.cpp33 LabelableElement::LabelableElement(const QualifiedName& tagName, Document& document) argument
34 : HTMLElement(tagName, document)
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLViewSourceParser.cpp37 HTMLViewSourceParser::HTMLViewSourceParser(HTMLViewSourceDocument& document, const String& mimeType) argument
38 : DecodedDataDocumentParser(document)
39 , m_tokenizer(HTMLTokenizer::create(HTMLParserOptions(&document)))
47 m_xssAuditor.init(document(), 0);
57 document()->addSource(m_sourceTracker.sourceForToken(m_token), m_token, annotation);
77 document()->finishedParsing();
H A DTextDocumentParser.cpp35 TextDocumentParser::TextDocumentParser(HTMLDocument& document) argument
36 : HTMLDocumentParser(document, false)
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeSymbolicFieldElement.cpp50 DateTimeSymbolicFieldElement::DateTimeSymbolicFieldElement(Document& document, FieldOwner& fieldOwner, const Vector<String>& symbols, int minimum, int maximum) argument
51 : DateTimeFieldElement(document, fieldOwner)
H A DPluginPlaceholderElement.cpp14 PluginPlaceholderElement::PluginPlaceholderElement(Document& document) argument
15 : HTMLDivElement(document)
19 PassRefPtrWillBeRawPtr<PluginPlaceholderElement> PluginPlaceholderElement::create(Document& document) argument
21 RefPtrWillBeRawPtr<PluginPlaceholderElement> element = adoptRefWillBeNoop(new PluginPlaceholderElement(document));
22 bool success = V8PluginPlaceholderElement::PrivateScript::createdCallbackMethod(document.frame(), element.get());
29 bool success = V8PluginPlaceholderElement::PrivateScript::messageAttributeSetter(document().frame(), this, message);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTElement.cpp67 VTTElement::VTTElement(VTTNodeType nodeType, Document* document) argument
68 : Element(nodeTypeToTagName(nodeType), document, CreateElement)
74 PassRefPtrWillBeRawPtr<VTTElement> VTTElement::create(VTTNodeType nodeType, Document* document) argument
76 return adoptRefWillBeNoop(new VTTElement(nodeType, document));
81 RefPtrWillBeRawPtr<VTTElement> clone = create(static_cast<VTTNodeType>(m_webVTTNodeType), &document());
86 PassRefPtrWillBeRawPtr<HTMLElement> VTTElement::createEquivalentHTMLElement(Document& document) argument
93 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::spanTag.localName(), document);
98 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::iTag.localName(), document);
101 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::bTag.localName(), document);
104 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::uTag.localName(), document);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.h75 Document& document() const { return *m_document; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderPagedFlowThread.cpp10 RenderPagedFlowThread* RenderPagedFlowThread::createAnonymous(Document& document, RenderStyle* parentStyle) argument
13 renderer->setDocumentForAnonymous(&document);
H A DRenderingTestHelper.h22 document().view()->updateLayoutAndStyleIfNeededRecursive();
25 Document& document() const { return m_pageHolder->document(); } function in class:blink::RenderingTest
29 document().body()->setInnerHTML(String::fromUTF8(htmlContent), ASSERT_NO_EXCEPTION);
30 document().view()->updateLayoutAndStyleIfNeededRecursive();
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAltGlyphDefElement.cpp32 inline SVGAltGlyphDefElement::SVGAltGlyphDefElement(Document& document) argument
33 : SVGElement(SVGNames::altGlyphDefTag, document)
H A DSVGAnimateTransformElement.cpp32 inline SVGAnimateTransformElement::SVGAnimateTransformElement(Document& document) argument
33 : SVGAnimateElement(SVGNames::animateTransformTag, document)
H A DSVGFEMergeElement.cpp33 inline SVGFEMergeElement::SVGFEMergeElement(Document& document) argument
34 : SVGFilterPrimitiveStandardAttributes(SVGNames::feMergeTag, document)
H A DSVGFEMergeNodeElement.cpp29 inline SVGFEMergeNodeElement::SVGFEMergeNodeElement(Document& document) argument
30 : SVGElement(SVGNames::feMergeNodeTag, document)
H A DSVGFontFaceSrcElement.cpp37 inline SVGFontFaceSrcElement::SVGFontFaceSrcElement(Document& document) argument
38 : SVGElement(font_face_srcTag, document)
H A DSVGGElement.cpp32 inline SVGGElement::SVGGElement(Document& document, ConstructionType constructionType) argument
33 : SVGGraphicsElement(SVGNames::gTag, document, constructionType)
H A DSVGGeometryElement.cpp42 SVGGeometryElement::SVGGeometryElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType) argument
43 : SVGGraphicsElement(tagName, document, constructionType)
49 document().updateLayoutIgnorePendingStylesheets();
63 document().updateLayoutIgnorePendingStylesheets();
H A DSVGPolyElement.cpp31 SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document) argument
32 : SVGGeometryElement(tagName, document)

Completed in 4674 milliseconds

1234567891011>>