/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLElement.h | 123 …bool isHTMLElement() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessary ch… 140 DEFINE_ELEMENT_TYPE_CASTS(HTMLElement, isHTMLElement()); 153 return isHTMLElement() && toHTMLElement(*this).hasTagName(name); in hasTagName() 171 …inline bool is##thisType(const Node& node) { return node.isHTMLElement() ? is##thisType(toHTMLElem…
|
D | HTMLTagCollection.h | 56 … const AtomicString& localName = testElement.isHTMLElement() ? m_loweredLocalName : m_localName; in elementMatches()
|
D | HTMLCollection.cpp | 275 return element.isHTMLElement() && isMatchingHTMLElement(*this, toHTMLElement(element)); in elementMatches() 439 if (!element->isHTMLElement()) in supportedPropertyNames() 467 if (!element->isHTMLElement()) in updateIdNameCache()
|
D | HTMLLabelElement.cpp | 122 if (node->isHTMLElement() && toHTMLElement(node)->isInteractiveContent()) in isInInteractiveContent()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | ApplyStyleCommand.cpp | 281 if (block && block->isHTMLElement()) { in applyBlockStyle() 393 if (node->isHTMLElement()) { in applyRelativeFontStyleChange() 487 && highestAncestorWithUnicodeBidi->isHTMLElement() in splitAncestorsWithUnicodeBidi() 547 …if (n->isHTMLElement() && getIdentifierValue(CSSComputedStyleDeclaration::create(n).get(), CSSProp… in highestEmbeddingAncestor() 788 if (!node->rendererIsRichlyEditable() && node->isHTMLElement()) { in applyInlineStyleToNodeRange() 891 if (!node->isHTMLElement()) in removeConflictingInlineStyleFromRun() 1008 if (n->isHTMLElement() && shouldRemoveInlineStyleFromElement(style, toHTMLElement(n))) in highestAncestorWithConflictingInlineStyle() 1029 if (node->isHTMLElement() && toHTMLElement(node)->inlineStyle()) { in applyInlineStyleToPushDown() 1036 if ((node->renderer()->isRenderBlockFlow() || node->hasChildren()) && node->isHTMLElement()) { in applyInlineStyleToPushDown() 1071 if (current->isHTMLElement()) in pushDownInlineStyleAroundNode() [all …]
|
D | MarkupAccumulator.cpp | 410 if (element.isHTMLElement()) in appendCloseTag() 533 if (element.isHTMLElement() && !elementCannotHaveEndTag(element)) in shouldSelfClose() 540 if (!node.isHTMLElement()) in elementCannotHaveEndTag()
|
D | htmlediting.cpp | 433 if (!n->isHTMLElement()) in isSpecialHTMLElement() 744 if (!firstList || !secondList || !firstList->isHTMLElement() || !secondList->isHTMLElement()) in canMergeLists() 1023 if (!node || !node->isHTMLElement()) in isMailHTMLBlockquoteElement() 1186 if (!node->isHTMLElement()) in isNonTableCellHTMLBlockElement()
|
D | ReplaceSelectionCommand.cpp | 116 …if (!node->isHTMLElement() || toHTMLElement(node)->getAttribute(classAttr) != convertedSpaceSpanCl… in isHTMLInterchangeConvertedSpaceSpan() 437 if (!node || !node->isHTMLElement()) in isMailPasteAsQuotationHTMLBlockQuoteElement() 448 if (!a || !a->isHTMLElement()) in isHTMLHeaderElement() 502 if (element->isHTMLElement()) { in removeRedundantStylesAndKeepStyleSpanInline() 644 if (!node->isHTMLElement()) in makeInsertedContentRoundTrippableWithHTMLTreeBuilder() 889 if (!node->isHTMLElement()) in isInlineHTMLElementWithStyle()
|
D | IndentOutdentCommand.cpp | 45 if (!node || !node->isHTMLElement()) in isHTMLListOrBlockquoteElement()
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | SliderThumbElement.h | 82 DEFINE_ELEMENT_TYPE_CASTS(SliderThumbElement, isHTMLElement());
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | VisitedLinkState.cpp | 43 if (element.isHTMLElement()) in linkAttribute()
|
D | StyleSheetCandidate.cpp | 106 if (node.isHTMLElement()) { in typeOf()
|
D | ChildFrameDisconnector.cpp | 43 if (root.isHTMLElement() && root.isFrameOwnerElement()) in collectFrameOwners()
|
D | PresentationAttributeStyle.cpp | 124 if (!element.isHTMLElement()) in makePresentationAttributeCacheKey()
|
D | StyleElement.cpp | 42 …return type.isEmpty() || (element->isHTMLElement() ? equalIgnoringCase(type, "text/css") : (type =… in isCSS()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderListBox.cpp | 79 ASSERT(element->isHTMLElement()); in RenderListBox()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebDocument.cpp | 171 if (element && element->isHTMLElement()) in images() 186 if (element && element->isHTMLElement()) in forms()
|
D | WebPageSerializerImpl.cpp | 378 if (!element->isHTMLElement() || !toHTMLElement(element)->ieForbidsInsertHTML()) { in endTagToString() 476 if (!element->isHTMLElement()) in collectTargetFrames()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | BaseChooserOnlyDateAndTimeInputType.cpp | 74 if (!node || !node->isHTMLElement()) in updateView()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ime/ |
D | InputMethodContext.cpp | 94 return element && element->isHTMLElement() && m_element == toHTMLElement(element); in hasFocus()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
D | CustomElementRegistrationContext.cpp | 132 if (!element->isHTMLElement() && !element->isSVGElement()) in setTypeExtension()
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXNodeObject.cpp | 87 if (node->isHTMLElement()) { in accessibleNameForNode() 356 if (!element->isHTMLElement() || !toHTMLElement(element)->isLabelable()) in labelForElement() 825 if (!node->isHTMLElement()) in headingLevel() 1227 if (curr->isHTMLElement()) { in helpText() 1263 if (child->isHTMLElement()) { in elementRect()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | ContextMenuController.cpp | 93 if (!node || !node->isHTMLElement()) in populateCustomContextMenu()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | V8LazyEventListener.cpp | 180 if (m_node && m_node->isHTMLElement()) in prepareListenerObject()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | SharedStyleFinder.cpp | 246 if (candidate.isHTMLElement() && toHTMLElement(candidate).hasDirectionAuto()) in canShareStyleWithElement()
|