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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTagNames.in 7 abbr interfaceName=HTMLElement
8 acronym interfaceName=HTMLElement
9 address interfaceName=HTMLElement
12 article interfaceName=HTMLElement
13 aside interfaceName=HTMLElement
15 b interfaceName=HTMLElement
17 basefont interfaceName=HTMLElement
18 bdi interfaceName=HTMLBDIElement, JSInterfaceName=HTMLElement
19 bdo interfaceName=HTMLElement
20 bgsound interfaceName=HTMLElement
    [all...]
HTMLTableElement.idl 21 interface HTMLTableElement : HTMLElement {
40 HTMLElement createTHead();
42 HTMLElement createTFoot();
44 HTMLElement createTBody();
45 HTMLElement createCaption();
48 [RaisesException] HTMLElement insertRow([Default=Undefined] optional long index);
HTMLBDIElement.h 24 #include "core/html/HTMLElement.h"
28 class HTMLBDIElement FINAL : public HTMLElement {
37 : HTMLElement(HTMLNames::bdiTag, document)
HTMLLabelElement.cpp 48 : HTMLElement(labelTag, document)
99 HTMLElement::setActive(down);
102 if (HTMLElement* element = control())
112 HTMLElement::setHovered(over);
115 if (HTMLElement* element = control())
141 RefPtr<HTMLElement> element = control();
165 HTMLElement::defaultEventHandler(evt);
173 return HTMLElement::willRespondToMouseClickEvents();
179 if (HTMLElement* element = control())
182 HTMLElement::focus(true, direction)
    [all...]
HTMLTablePartElement.h 29 #include "core/html/HTMLElement.h"
35 class HTMLTablePartElement : public HTMLElement {
38 : HTMLElement(tagName, document)
HTMLTableElement.h 29 #include "core/html/HTMLElement.h"
39 class HTMLTableElement FINAL : public HTMLElement {
52 PassRefPtr<HTMLElement> createTHead();
54 PassRefPtr<HTMLElement> createTFoot();
56 PassRefPtr<HTMLElement> createTBody();
57 PassRefPtr<HTMLElement> createCaption();
59 PassRefPtr<HTMLElement> insertRow(int index, ExceptionState&);
FormAssociatedElement.cpp 71 HTMLElement* element = toHTMLElement(this);
85 HTMLElement* element = toHTMLElement(this);
92 HTMLElement* element = toHTMLElement(this);
101 HTMLFormElement* FormAssociatedElement::findAssociatedForm(const HTMLElement* element, HTMLFormElement* currentAssociatedForm)
165 HTMLElement* element = toHTMLElement(this);
172 HTMLElement* element = toHTMLElement(this);
177 HTMLElement* element = toHTMLElement(this);
190 const HTMLElement* element = toHTMLElement(this);
278 const HTMLElement& toHTMLElement(const FormAssociatedElement& associatedElement)
286 const HTMLElement* toHTMLElement(const FormAssociatedElement* associatedElement
    [all...]
HTMLElement.cpp 26 #include "core/html/HTMLElement.h"
69 PassRefPtr<HTMLElement> HTMLElement::create(const QualifiedName& tagName, Document& document)
71 return adoptRef(new HTMLElement(tagName, document));
74 String HTMLElement::nodeName() const
84 bool HTMLElement::ieForbidsInsertHTML() const
114 static inline CSSValueID unicodeBidiAttributeForDirAuto(HTMLElement* element)
123 unsigned HTMLElement::parseBorderWidthAttribute(const AtomicString& value) const
131 void HTMLElement::applyBorderAttributeToStyle(const AtomicString& value, MutableStylePropertySet* style)
137 void HTMLElement::mapLanguageAttributeToLocale(const AtomicString& value, MutableStylePropertySet* style
    [all...]
FormAssociatedElement.h 35 class HTMLElement;
49 static HTMLFormElement* findAssociatedForm(const HTMLElement*, HTMLFormElement*);
121 HTMLElement* toHTMLElement(FormAssociatedElement*);
122 HTMLElement& toHTMLElement(FormAssociatedElement&);
123 const HTMLElement* toHTMLElement(const FormAssociatedElement*);
124 const HTMLElement& toHTMLElement(const FormAssociatedElement&);
HTMLElement.h 41 class HTMLElement : public Element {
43 static PassRefPtr<HTMLElement> create(const QualifiedName& tagName, Document&);
95 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType);
131 DEFINE_NODE_TYPE_CASTS(HTMLElement, isHTMLElement());
133 inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document& document, ConstructionType type = CreateHTMLElement)
HTMLScriptElement.cpp 41 : HTMLElement(scriptTag, document)
54 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute);
59 HTMLElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
72 HTMLElement::parseAttribute(name, value);
77 HTMLElement::insertedInto(insertionPoint);
117 HTMLElement::addSubresourceAttributeURLs(urls);
HTMLDivElement.cpp 35 : HTMLElement(divTag, document)
49 return HTMLElement::isPresentationAttribute(name);
64 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
HTMLParagraphElement.cpp 35 : HTMLElement(pTag, document)
49 return HTMLElement::isPresentationAttribute(name);
64 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
HTMLPreElement.cpp 36 : HTMLElement(tagName, document)
50 return HTMLElement::isPresentationAttribute(name);
58 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertListCommand.h 33 class HTMLElement;
44 static PassRefPtr<HTMLElement> insertList(Document&, Type);
54 HTMLElement* fixOrphanedListChild(Node*);
56 PassRefPtr<HTMLElement> mergeWithNeighboringLists(PassRefPtr<HTMLElement>);
58 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
59 PassRefPtr<HTMLElement> listifyParagraph(const VisiblePosition& originalStart, const QualifiedName& listTag);
60 RefPtr<HTMLElement> m_listElement;
ReplaceNodeWithSpanCommand.h 38 class HTMLElement;
43 static PassRefPtr<ReplaceNodeWithSpanCommand> create(PassRefPtr<HTMLElement> element)
48 HTMLElement* spanElement() { return m_spanElement.get(); }
51 explicit ReplaceNodeWithSpanCommand(PassRefPtr<HTMLElement>);
56 RefPtr<HTMLElement> m_elementToReplace;
57 RefPtr<HTMLElement> m_spanElement;
ApplyStyleCommand.h 31 #include "core/html/HTMLElement.h"
81 bool removeInlineStyleFromElement(EditingStyle*, PassRefPtr<HTMLElement>, InlineStyleRemovalMode = RemoveIfNeeded, EditingStyle* extractedStyle = 0);
82 inline bool shouldRemoveInlineStyleFromElement(EditingStyle* style, HTMLElement* element) {return removeInlineStyleFromElement(style, element, RemoveNone);}
83 void replaceWithSpanOrRemoveIfWithoutAttributes(HTMLElement*&);
84 bool removeImplicitlyStyledElement(EditingStyle*, HTMLElement*, InlineStyleRemovalMode, EditingStyle* extractedStyle);
85 bool removeCSSStyle(EditingStyle*, HTMLElement*, InlineStyleRemovalMode = RemoveIfNeeded, EditingStyle* extractedStyle = 0);
86 HTMLElement* highestAncestorWithConflictingInlineStyle(EditingStyle*, Node*);
99 void addBlockStyle(const StyleChange&, HTMLElement*);
117 HTMLElement* splitAncestorsWithUnicodeBidi(Node*, bool before, WritingDirection allowedDirection);
139 PassRefPtr<HTMLElement> createStyleSpanElement(Document&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTElement.cpp 86 PassRefPtr<HTMLElement> VTTElement::createEquivalentHTMLElement(Document& document)
88 RefPtr<HTMLElement> htmlElement;
93 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::spanTag.localName(), document);
94 htmlElement.get()->setAttribute(HTMLNames::titleAttr, getAttribute(voiceAttributeName()));
95 htmlElement.get()->setAttribute(HTMLNames::langAttr, getAttribute(langAttributeName()));
98 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::iTag.localName(), document);
101 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::bTag.localName(), document);
104 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::uTag.localName(), document);
107 htmlElement = HTMLElementFactory::createHTMLElement(HTMLNames::rubyTag.localName(), document)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
util.js 10 * @return {HTMLElement} The html element for the given element id.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
util.js 10 * @return {HTMLElement} The html element for the given element id.
  /external/chromium_org/ui/webui/resources/js/cr/ui/
tabs.js 20 * @param {HTMLElement} el The element whose tag is being checked
42 * @this {HTMLElement}
88 * @extends {HTMLElement}
93 __proto__: HTMLElement.prototype,
128 * @extends {HTMLElement}
132 __proto__: HTMLElement.prototype,
185 * @extends {HTMLElement}
189 __proto__: HTMLElement.prototype,
208 * @extends {HTMLElement}
212 __proto__: HTMLElement.prototype
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXListBoxOption.h 33 #include "core/html/HTMLElement.h"
40 class HTMLElement;
51 void setHTMLElement(HTMLElement* element) { m_optionElement = element; }
67 HTMLElement* m_optionElement;
75 AXObject* listBoxOptionAXObject(HTMLElement*) const;
AXMenuListOption.h 34 class HTMLElement;
40 void setElement(HTMLElement*);
61 RefPtr<HTMLElement> m_element;
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.h 37 #include "core/html/HTMLElement.h"
52 static PassOwnPtr<InputMethodContext> create(HTMLElement*);
60 HTMLElement* target() const;
82 InputMethodContext(HTMLElement*);
90 HTMLElement* m_element;
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
tabs.js 31 * @this {HTMLElement}
68 * @extends {HTMLElement}
73 __proto__: HTMLElement.prototype,
108 * @extends {HTMLElement}
112 __proto__: HTMLElement.prototype,
164 * @extends {HTMLElement}
168 __proto__: HTMLElement.prototype,
187 * @extends {HTMLElement}
191 __proto__: HTMLElement.prototype,
199 * @extends {HTMLElement}
    [all...]

Completed in 1282 milliseconds

1 2 3 4 5 6 7 8 91011>>