HomeSort by relevance Sort by last modified time
    Searched refs:toHTMLElement (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
FormAssociatedElement.cpp 81 HTMLElement* element = toHTMLElement(this);
94 HTMLElement* element = toHTMLElement(this);
101 HTMLElement* element = toHTMLElement(this);
133 if (NodeTraversal::highestAncestorOrSelf(toHTMLElement(*this)) == formRoot)
182 HTMLElement* element = toHTMLElement(this);
208 const HTMLElement* element = toHTMLElement(this);
283 HTMLElement* element = toHTMLElement(this);
298 const AtomicString& name = toHTMLElement(this)->getNameAttribute();
307 const HTMLElement& toHTMLElement(const FormAssociatedElement& associatedElement)
317 const HTMLElement* toHTMLElement(const FormAssociatedElement* associatedElement
    [all...]
FormAssociatedElement.h 141 HTMLElement* toHTMLElement(FormAssociatedElement*);
142 HTMLElement& toHTMLElement(FormAssociatedElement&);
143 const HTMLElement* toHTMLElement(const FormAssociatedElement*);
144 const HTMLElement& toHTMLElement(const FormAssociatedElement&);
DOMFormData.cpp 54 if (!toHTMLElement(element)->isDisabledFormControl())
DocumentNameCollection.h 21 HTMLElement* item(unsigned offset) const { return toHTMLElement(HTMLNameCollection::item(offset)); }
HTMLFormControlsCollection.h 47 HTMLElement* item(unsigned offset) const { return toHTMLElement(HTMLCollection::item(offset)); }
HTMLFormControlsCollection.cpp 77 if (associatedElement->isEnumeratable() && toHTMLElement(associatedElement) == element)
97 m_cachedElement = toHTMLElement(associatedElement);
118 HTMLElement* element = toHTMLElement(elementsArray[i]);
164 HTMLElement* element = toHTMLElement(associatedElement);
HTMLElement.h 153 return isHTMLElement() && toHTMLElement(*this).hasTagName(name);
171 inline bool is##thisType(const Node& node) { return node.isHTMLElement() ? is##thisType(toHTMLElement(node)) : false; } \
RadioNodeList.cpp 103 HTMLFormElement* formElement = toHTMLElement(testElement).formOwner();
HTMLCollection.cpp 275 return element.isHTMLElement() && isMatchingHTMLElement(*this, toHTMLElement(element));
442 if (!nameAttribute.isEmpty() && (type() != DocAll || nameShouldBeVisibleInDocumentAll(toHTMLElement(*element)))) {
470 if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal && (type() != DocAll || nameShouldBeVisibleInDocumentAll(toHTMLElement(*element))))
HTMLTableRowsCollection.cpp 45 return toHTMLElement(row.parentNode())->hasTagName(sectionTag);
HTMLElement.cpp 640 return node->isHTMLElement() && (isHTMLBDIElement(toHTMLElement(*node)) || toHTMLElement(*node).hasAttribute(dirAttr));
    [all...]
HTMLFormElement.cpp 296 HTMLElement* unhandled = toHTMLElement(unhandledAssociatedElement);
309 HTMLElement* unhandled = toHTMLElement(unhandledAssociatedElement);
569 removeFromPastNamesMap(toHTMLElement(e));
753 ASSERT_WITH_SECURITY_IMPLICATION(toHTMLElement(element)->formOwner() == this);
HTMLLabelElement.cpp 122 if (node->isHTMLElement() && toHTMLElement(node)->isInteractiveContent())
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FormatBlockCommand.cpp 98 if (outerBlock.get() != nodeAfterInsertionPosition.get() && toHTMLElement(nodeAfterInsertionPosition.get())->hasAttribute(styleAttr))
99 blockElement->setAttribute(styleAttr, toHTMLElement(nodeAfterInsertionPosition.get())->getAttribute(styleAttr));
IndentOutdentCommand.cpp 47 const HTMLElement& element = toHTMLElement(*node);
79 RefPtrWillBeRawPtr<HTMLElement> newList = toHTMLElement(document().createElement(listElement->tagQName(), false).get());
139 HTMLElement* enclosingElement = toHTMLElement(enclosingNodeOfType(visibleStartOfParagraph.deepEquivalent(), &isHTMLListOrBlockquoteElement));
ApplyStyleCommand.cpp 282 removeCSSStyle(style, toHTMLElement(block));
284 addBlockStyle(styleChange, toHTMLElement(block));
395 if (!elementFullySelected(toHTMLElement(*node), start, end))
397 element = toHTMLElement(node);
491 return toHTMLElement(highestAncestorWithUnicodeBidi);
493 unsplitAncestor = toHTMLElement(highestAncestorWithUnicodeBidi);
548 return toHTMLElement(n);
789 HTMLElement* element = toHTMLElement(node);
    [all...]
ReplaceSelectionCommand.cpp 116 if (!node->isHTMLElement() || toHTMLElement(node)->getAttribute(classAttr) != convertedSpaceSpanClassString)
331 HTMLElement& element = toHTMLElement(*node);
439 const HTMLElement& element = toHTMLElement(*node);
451 const HTMLElement& element = toHTMLElement(*a);
504 HTMLElement* htmlElement = toHTMLElement(element);
647 HTMLElement& element = toHTMLElement(*node);
649 if (HTMLElement* paragraphElement = toHTMLElement(enclosingElementWithTag(positionInParentBeforeNode(element), pTag)))
654 if (HTMLElement* headerElement = toHTMLElement(highestEnclosingNodeOfType(positionInParentBeforeNode(element), isHTMLHeaderElement)))
    [all...]
markup.cpp 322 newInlineStyle->mergeStyleFromRulesForSerialization(&toHTMLElement(element));
461 return toHTMLElement(commonAncestorBlock);
473 HTMLElement* commonAncestorBlock = toHTMLElement(enclosingNodeOfType(firstPositionInOrBeforeNode(commonAncestor), isHTMLBlockElement));
512 const HTMLElement& element = toHTMLElement(*node);
532 specialCommonAncestor = toHTMLElement(ancestor);
543 HTMLElement* newSpecialCommonAncestor = toHTMLElement(highestEnclosingNodeOfType(firstPositionInNode(checkAncestor), &isPresentationalHTMLElement, CanCrossEditingBoundary, constrainingAncestor));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlElementTypes.cpp 64 HTMLElement* element = toHTMLElement(node);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseChooserOnlyDateAndTimeInputType.cpp 85 toHTMLElement(node)->setInnerText(displayValue, ASSERT_NO_EXCEPTION);
ColorInputType.cpp 216 return shadow ? toHTMLElement(shadow->firstChild()->firstChild()) : 0;
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.cpp 94 return element && element->isHTMLElement() && m_element == toHTMLElement(element);
  /external/chromium_org/third_party/WebKit/Source/core/page/
ContextMenuController.cpp 96 HTMLElement& element = toHTMLElement(*node);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8LazyEventListener.cpp 181 formElement = toHTMLElement(m_node)->formOwner();
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 246 if (candidate.isHTMLElement() && toHTMLElement(candidate).hasDirectionAuto())

Completed in 495 milliseconds

1 2