Home
last modified time | relevance | path

Searched refs:HTMLElement (Results 1 – 25 of 441) sorted by relevance

12345678910>>...18

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTagNames.in7 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 …]
DHTMLTableRowsCollection.cpp58 HTMLElement* child = 0; in rowAfter()
60 child = Traversal<HTMLElement>::firstChild(table); in rowAfter()
62 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode()); in rowAfter()
63 for (; child; child = Traversal<HTMLElement>::nextSibling(*child)) { in rowAfter()
72 child = Traversal<HTMLElement>::firstChild(table); in rowAfter()
74 child = Traversal<HTMLElement>::nextSibling(*previous); in rowAfter()
76 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode()); in rowAfter()
77 for (; child; child = Traversal<HTMLElement>::nextSibling(*child)) { in rowAfter()
88 child = Traversal<HTMLElement>::firstChild(table); in rowAfter()
90 child = Traversal<HTMLElement>::nextSibling(*previous->parentNode()); in rowAfter()
[all …]
DHTMLLabelElement.cpp42 : HTMLElement(labelTag, document) in HTMLLabelElement()
92 HTMLElement::setActive(down); in setActive()
95 if (HTMLElement* element = control()) in setActive()
105 HTMLElement::setHovered(over); in setHovered()
108 if (HTMLElement* element = control()) in setHovered()
134 RefPtrWillBeRawPtr<HTMLElement> element = control(); in defaultEventHandler()
197 HTMLElement::defaultEventHandler(evt); in defaultEventHandler()
205 return HTMLElement::willRespondToMouseClickEvents(); in willRespondToMouseClickEvents()
211 if (HTMLElement* element = control()) in focus()
214 HTMLElement::focus(true, type); in focus()
[all …]
DHTMLElement.cpp70 DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(HTMLElement);
72 String HTMLElement::nodeName() const in nodeName()
85 bool HTMLElement::ieForbidsInsertHTML() const in ieForbidsInsertHTML()
115 static inline CSSValueID unicodeBidiAttributeForDirAuto(HTMLElement* element) in unicodeBidiAttributeForDirAuto()
124 unsigned HTMLElement::parseBorderWidthAttribute(const AtomicString& value) const in parseBorderWidthAttribute()
132 void HTMLElement::applyBorderAttributeToStyle(const AtomicString& value, MutableStylePropertySet* s… in applyBorderAttributeToStyle()
138 void HTMLElement::mapLanguageAttributeToLocale(const AtomicString& value, MutableStylePropertySet* … in mapLanguageAttributeToLocale()
149 bool HTMLElement::isPresentationAttribute(const QualifiedName& name) const in isPresentationAttribute()
161 void HTMLElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicStrin… in collectStyleForPresentationAttribute()
208 const AtomicString& HTMLElement::eventNameForAttributeName(const QualifiedName& attrName) in eventNameForAttributeName()
[all …]
DHTMLElement.h42 class HTMLElement : public Element {
45 DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(HTMLElement);
104 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType);
140 DEFINE_ELEMENT_TYPE_CASTS(HTMLElement, isHTMLElement());
142 template <typename T> bool isElementOfType(const HTMLElement&);
143 template <> inline bool isElementOfType<const HTMLElement>(const HTMLElement&) { return true; }
145 inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document& document, ConstructionType …
160 bool operator() (const HTMLElement& element) const { return element.hasTagName(m_tagName); } in operator()
170 …inline bool is##thisType(const HTMLElement* element) { return element && is##thisType(*element); }…
176 …template <> inline bool isElementOfType<const thisType>(const HTMLElement& element) { return is##t…
DHTMLAnchorElement.cpp63 : HTMLElement(tagName, document) in HTMLAnchorElement()
82 return HTMLElement::supportsFocus(); in supportsFocus()
84 return isLink() || HTMLElement::supportsFocus(); in supportsFocus()
89 return !m_wasFocusedByMouse || HTMLElement::supportsFocus(); in shouldHaveFocusAppearance()
96 HTMLElement::dispatchFocusEvent(oldFocusedElement, type); in dispatchFocusEvent()
104 return HTMLElement::isMouseFocusable(); in isMouseFocusable()
112 return HTMLElement::isKeyboardFocusable(); in isKeyboardFocusable()
116 return HTMLElement::isKeyboardFocusable(); in isKeyboardFocusable()
163 HTMLElement::defaultEventHandler(event); in defaultEventHandler()
187 HTMLElement::attributeWillChange(name, oldValue, newValue); in attributeWillChange()
[all …]
DFormAssociatedElement.cpp81 HTMLElement* element = toHTMLElement(this); in didMoveToNewDocument()
94 HTMLElement* element = toHTMLElement(this); in insertedInto()
101 HTMLElement* element = toHTMLElement(this); in removedFrom()
110 HTMLFormElement* FormAssociatedElement::findAssociatedForm(const HTMLElement* element) in findAssociatedForm()
182 HTMLElement* element = toHTMLElement(this); in resetFormOwner()
208 const HTMLElement* element = toHTMLElement(this); in customError()
283 HTMLElement* element = toHTMLElement(this); in resetFormAttributeTargetObserver()
307 const HTMLElement& toHTMLElement(const FormAssociatedElement& associatedElement) in toHTMLElement()
317 const HTMLElement* toHTMLElement(const FormAssociatedElement* associatedElement) in toHTMLElement()
323 HTMLElement* toHTMLElement(FormAssociatedElement* associatedElement) in toHTMLElement()
[all …]
DHTMLSelectElement.cpp213 void HTMLSelectElement::add(HTMLElement* element, HTMLElement* before, ExceptionState& exceptionSta… in add()
216 RefPtrWillBeRawPtr<HTMLElement> protectNewChild(element); in add()
225 void HTMLSelectElement::addBeforeOptionAtIndex(HTMLElement* element, int beforeIndex, ExceptionStat… in addBeforeOptionAtIndex()
242 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); in value()
258 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); in setValue()
284 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); in suggestedValue()
301 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); in setSuggestedValue()
496 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems(); in setLength()
531 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = this->listItems(); in nextValidIndex()
536 HTMLElement* element = listItems[listIndex]; in nextValidIndex()
[all …]
DHTMLTableElement.cpp56 : HTMLElement(tableTag, document) in HTMLTableElement()
80 …return toHTMLTableSectionElement(Traversal<HTMLElement>::firstChild(*this, HasHTMLTagName(theadTag… in tHead()
87 HTMLElement* child; in setTHead()
88 …for (child = Traversal<HTMLElement>::firstChild(*this); child; child = Traversal<HTMLElement>::nex… in setTHead()
98 …return toHTMLTableSectionElement(Traversal<HTMLElement>::firstChild(*this, HasHTMLTagName(tfootTag… in tFoot()
105 HTMLElement* child; in setTFoot()
106 …for (child = Traversal<HTMLElement>::firstChild(*this); child; child = Traversal<HTMLElement>::nex… in setTFoot()
114 PassRefPtrWillBeRawPtr<HTMLElement> HTMLTableElement::createTHead() in createTHead()
128 PassRefPtrWillBeRawPtr<HTMLElement> HTMLTableElement::createTFoot() in createTFoot()
142 PassRefPtrWillBeRawPtr<HTMLElement> HTMLTableElement::createTBody() in createTBody()
[all …]
DHTMLStyleElement.cpp45 : HTMLElement(styleTag, document) in HTMLStyleElement()
74 HTMLElement::parseAttribute(name, value); in parseAttribute()
81 HTMLElement::finishParsingChildren(); in finishParsingChildren()
86 HTMLElement::insertedInto(insertionPoint); in insertedInto()
96 HTMLElement::removedFrom(insertionPoint); in removedFrom()
119 HTMLElement::childrenChanged(change); in childrenChanged()
181 HTMLElement::trace(visitor); in trace()
DHTMLTableElement.h39 class HTMLTableElement FINAL : public HTMLElement {
53 PassRefPtrWillBeRawPtr<HTMLElement> createTHead();
55 PassRefPtrWillBeRawPtr<HTMLElement> createTFoot();
57 PassRefPtrWillBeRawPtr<HTMLElement> createTBody();
58 PassRefPtrWillBeRawPtr<HTMLElement> createCaption();
60 PassRefPtrWillBeRawPtr<HTMLElement> insertRow(int index, ExceptionState&);
DFormAssociatedElement.h37 class HTMLElement; variable
52 static HTMLFormElement* findAssociatedForm(const HTMLElement*);
141 HTMLElement* toHTMLElement(FormAssociatedElement*);
142 HTMLElement& toHTMLElement(FormAssociatedElement&);
143 const HTMLElement* toHTMLElement(const FormAssociatedElement*);
144 const HTMLElement& toHTMLElement(const FormAssociatedElement&);
DHTMLBaseElement.cpp37 : HTMLElement(baseTag, document) in HTMLBaseElement()
48 HTMLElement::parseAttribute(name, value); in DEFINE_NODE_FACTORY()
53 HTMLElement::insertedInto(insertionPoint); in insertedInto()
61 HTMLElement::removedFrom(insertionPoint); in removedFrom()
68 return attribute.name().localName() == hrefAttr || HTMLElement::isURLAttribute(attribute); in isURLAttribute()
DHTMLScriptElement.cpp42 : HTMLElement(scriptTag, document) in HTMLScriptElement()
54 return attribute.name() == srcAttr || HTMLElement::isURLAttribute(attribute); in isURLAttribute()
59 return name == srcAttr || HTMLElement::hasLegalLinkAttribute(name); in hasLegalLinkAttribute()
69 HTMLElement::childrenChanged(change); in childrenChanged()
77 HTMLElement::didMoveToNewDocument(oldDocument); in didMoveToNewDocument()
87 HTMLElement::parseAttribute(name, value); in parseAttribute()
101 HTMLElement::insertedInto(insertionPoint); in insertedInto()
DHTMLLIElement.cpp37 : HTMLElement(liTag, document) in HTMLLIElement()
47 return HTMLElement::isPresentationAttribute(name); in DEFINE_NODE_FACTORY()
66 HTMLElement::collectStyleForPresentationAttribute(name, value, style); in collectStyleForPresentationAttribute()
75 HTMLElement::parseAttribute(name, value); in parseAttribute()
80 HTMLElement::attach(context); in attach()
DHTMLTableElement.idl21 interface HTMLTableElement : HTMLElement {
40 HTMLElement createTHead();
42 HTMLElement createTFoot();
44 HTMLElement createTBody();
45 HTMLElement createCaption();
48 [RaisesException] HTMLElement insertRow(optional long index = -1);
DHTMLMapElement.cpp40 : HTMLElement(mapTag, document) in HTMLMapElement()
95 HTMLElement::parseAttribute(name, value); in parseAttribute()
111 HTMLElement::parseAttribute(name, value); in parseAttribute()
123 return HTMLElement::insertedInto(insertionPoint); in insertedInto()
130 HTMLElement::removedFrom(insertionPoint); in removedFrom()
/external/chromium_org/third_party/WebKit/Source/core/page/
DCustomContextMenuProvider.cpp22 CustomContextMenuProvider::CustomContextMenuProvider(HTMLMenuElement& menu, HTMLElement& subject) in CustomContextMenuProvider()
39 if (HTMLElement* element = menuItemAt(item->action())) { in contextMenuItemSelected()
80 HTMLElement* nextElement = Traversal<HTMLElement>::firstWithin(menu); in populateContextMenuItems()
84 nextElement = Traversal<HTMLElement>::next(*nextElement, &menu); in populateContextMenuItems()
96 nextElement = Traversal<HTMLElement>::nextSibling(*nextElement); in populateContextMenuItems()
101 nextElement = Traversal<HTMLElement>::next(*nextElement, &menu); in populateContextMenuItems()
103 nextElement = Traversal<HTMLElement>::next(*nextElement, &menu); in populateContextMenuItems()
112 HTMLElement* CustomContextMenuProvider::menuItemAt(unsigned menuId) in menuItemAt()
DCustomContextMenuProvider.h15 class HTMLElement; variable
21 static PassRefPtr<CustomContextMenuProvider> create(HTMLMenuElement& menu, HTMLElement& subject) in create()
27 CustomContextMenuProvider(HTMLMenuElement&, HTMLElement&);
36 HTMLElement* menuItemAt(unsigned menuId);
39 RefPtrWillBePersistent<HTMLElement> m_subjectElement;
40 WillBePersistentHeapVector<RefPtrWillBeMember<HTMLElement> > m_menuItems;
/external/chromium_org/third_party/WebKit/Source/core/editing/
DInsertListCommand.h33 class HTMLElement; variable
57 …PassRefPtrWillBeRawPtr<HTMLElement> mergeWithNeighboringLists(PassRefPtrWillBeRawPtr<HTMLElement>);
59 …void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChi…
60 …PassRefPtrWillBeRawPtr<HTMLElement> listifyParagraph(const VisiblePosition& originalStart, const H…
62 RefPtrWillBeMember<HTMLElement> m_listElement;
DApplyStyleCommand.h83 …bool removeInlineStyleFromElement(EditingStyle*, PassRefPtrWillBeRawPtr<HTMLElement>, InlineStyleR…
84 …inline bool shouldRemoveInlineStyleFromElement(EditingStyle* style, HTMLElement* element) {return … in shouldRemoveInlineStyleFromElement()
85 void replaceWithSpanOrRemoveIfWithoutAttributes(HTMLElement*);
86 …bool removeImplicitlyStyledElement(EditingStyle*, HTMLElement*, InlineStyleRemovalMode, EditingSty…
87 …bool removeCSSStyle(EditingStyle*, HTMLElement*, InlineStyleRemovalMode = RemoveIfNeeded, EditingS…
88 HTMLElement* highestAncestorWithConflictingInlineStyle(EditingStyle*, Node*);
92 bool elementFullySelected(HTMLElement&, const Position& start, const Position& end) const;
100 void addBlockStyle(const StyleChange&, HTMLElement*);
118HTMLElement* splitAncestorsWithUnicodeBidi(Node*, bool before, WritingDirection allowedDirection);
119 void removeEmbeddingUpToEnclosingBlock(Node*, HTMLElement* unsplitAncestor);
DInsertListCommand.cpp64 PassRefPtrWillBeRawPtr<HTMLElement> InsertListCommand::mergeWithNeighboringLists(PassRefPtrWillBeRa… in mergeWithNeighboringLists()
66 RefPtrWillBeRawPtr<HTMLElement> list = passedList; in mergeWithNeighboringLists()
78 RefPtrWillBeRawPtr<HTMLElement> nextList = toHTMLElement(nextSibling); in mergeWithNeighboringLists()
95 HTMLElement* listElement = enclosingList(start.deepEquivalent().deprecatedNode()); in selectionHasListOfType()
213 RefPtrWillBeRawPtr<HTMLElement> listElement = enclosingList(listChildNode); in doApplyForSingleParagraph()
231 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag); in doApplyForSingleParagraph()
266 void InsertListCommand::unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listE… in unlistifyParagraph()
290 RefPtrWillBeRawPtr<HTMLElement> elementToInsert = placeholder; in unlistifyParagraph()
324 static HTMLElement* adjacentEnclosingList(const VisiblePosition& pos, const VisiblePosition& adjace… in adjacentEnclosingList()
326HTMLElement* listElement = outermostEnclosingList(adjacentPos.deepEquivalent().deprecatedNode()); in adjacentEnclosingList()
[all …]
DReplaceNodeWithSpanCommand.h38 class HTMLElement; variable
44 …sRefPtrWillBeRawPtr<ReplaceNodeWithSpanCommand> create(PassRefPtrWillBeRawPtr<HTMLElement> element) in create()
54 explicit ReplaceNodeWithSpanCommand(PassRefPtrWillBeRawPtr<HTMLElement>);
59 RefPtrWillBeMember<HTMLElement> m_elementToReplace;
Dhtmlediting.h41 class HTMLElement; variable
139 Position positionBeforeContainingSpecialElement(const Position&, HTMLElement** containingSpecialEle…
140 Position positionAfterContainingSpecialElement(const Position&, HTMLElement** containingSpecialElem…
216 PassRefPtrWillBeRawPtr<HTMLElement> createDefaultParagraphElement(Document&);
221 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document&, const QualifiedName&);
222 PassRefPtrWillBeRawPtr<HTMLElement> createHTMLElement(Document&, const AtomicString&);
224 HTMLElement* enclosingList(Node*);
225 HTMLElement* outermostEnclosingList(Node*, HTMLElement* rootList = 0);
DEditingStyle.h54 class HTMLElement; variable
113 …bool conflictsWithInlineStyleOfElement(HTMLElement* element) const { return conflictsWithInlineSty… in conflictsWithInlineStyleOfElement()
114 …bool conflictsWithInlineStyleOfElement(HTMLElement* element, EditingStyle* extractedStyle, Vector<… in conflictsWithInlineStyleOfElement()
118 …bool conflictsWithImplicitStyleOfElement(HTMLElement*, EditingStyle* extractedStyle = 0, ShouldExt…
119 bool conflictsWithImplicitStyleOfAttributes(HTMLElement*) const;
120 …bool extractConflictingImplicitStyleOfAttributes(HTMLElement*, ShouldPreserveWritingDirection, Edi…
124 static bool elementIsStyledSpanOrHTMLEquivalent(const HTMLElement*);
129 …void mergeInlineStyleOfElement(HTMLElement*, CSSPropertyOverrideMode, PropertiesToInclude = AllPro…
159 …bool conflictsWithInlineStyleOfElement(HTMLElement*, EditingStyle* extractedStyle, Vector<CSSPrope…

12345678910>>...18