HomeSort by relevance Sort by last modified time
    Searched refs:HTMLElement (Results 251 - 275 of 486) sorted by null

<<11121314151617181920

  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.cpp 452 static HTMLElement* firstInSpecialElement(const Position& pos)
457 HTMLElement* specialElement = toHTMLElement(n);
469 static HTMLElement* lastInSpecialElement(const Position& pos)
474 HTMLElement* specialElement = toHTMLElement(n);
486 Position positionBeforeContainingSpecialElement(const Position& pos, HTMLElement** containingSpecialElement)
488 HTMLElement* n = firstInSpecialElement(pos);
499 Position positionAfterContainingSpecialElement(const Position& pos, HTMLElement** containingSpecialElement)
501 HTMLElement* n = lastInSpecialElement(pos);
674 HTMLElement* enclosingList(Node* node)
727 HTMLElement* outermostEnclosingList(Node* node, HTMLElement* rootList
    [all...]
ApplyBlockElementCommand.cpp 38 #include "core/html/HTMLElement.h"
115 RefPtrWillBeRawPtr<HTMLElement> blockquote = createBlockElement();
123 RefPtrWillBeRawPtr<HTMLElement> blockquoteForNextIndent = nullptr;
284 PassRefPtrWillBeRawPtr<HTMLElement> ApplyBlockElementCommand::createBlockElement() const
286 RefPtrWillBeRawPtr<HTMLElement> element = createHTMLElement(document(), m_tagName);
ReplaceSelectionCommand.h 80 Node* insertAsListItems(PassRefPtrWillBeRawPtr<HTMLElement> listElement, Element* insertionBlock, const Position&, InsertedNodes&);
markup.cpp 59 #include "core/html/HTMLElement.h"
452 static HTMLElement* ancestorToRetainStructureAndAppearanceForBlock(Element* commonAncestorBlock)
466 static inline HTMLElement* ancestorToRetainStructureAndAppearance(Node* commonAncestor)
471 static inline HTMLElement* ancestorToRetainStructureAndAppearanceWithNoRenderer(Node* commonAncestor)
473 HTMLElement* commonAncestorBlock = toHTMLElement(enclosingNodeOfType(firstPositionInOrBeforeNode(commonAncestor), isHTMLBlockElement));
498 static PassRefPtrWillBeRawPtr<EditingStyle> styleFromMatchedRulesAndInlineDecl(const HTMLElement* element)
503 style->mergeStyleFromRules(const_cast<HTMLElement*>(element));
512 const HTMLElement& element = toHTMLElement(*node);
517 static HTMLElement* highestAncestorToWrapMarkup(const Range* range, EAnnotateForInterchange shouldAnnotate, Node* constrainingAncestor)
521 HTMLElement* specialCommonAncestor = 0
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
app_view_deny.js 15 var proto = Object.create(HTMLElement.prototype);
  /external/chromium_org/extensions/renderer/resources/
web_view_deny.js 14 var proto = Object.create(HTMLElement.prototype);
  /external/chromium_org/remoting/webapp/
toolbar.js 16 * @param {HTMLElement} toolbar The HTML element representing the tool-bar.
21 * @type {HTMLElement}
26 * @type {HTMLElement}
29 this.stub_ = /** @type {HTMLElement} */toolbar.querySelector('.toolbar-stub');
  /external/chromium_org/third_party/WebKit/Source/core/css/
AffectedByFocusTest.cpp 13 #include "core/html/HTMLElement.h"
62 HTMLElement* element = document().body();
64 for (; element && i < expectedCount; element = Traversal<HTMLElement>::next(*element), ++i) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h 41 class HTMLElement;
112 InputMethodContext& ensureInputMethodContext(HTMLElement* element)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLObjectElement.idl 23 ] interface HTMLObjectElement : HTMLElement {
HTMLTextAreaElement.idl 22 interface HTMLTextAreaElement : HTMLElement {
HTMLAnchorElement.h 30 #include "core/html/HTMLElement.h"
58 class HTMLAnchorElement : public HTMLElement, public DOMURLUtils {
HTMLFrameOwnerElement.h 26 #include "core/html/HTMLElement.h"
39 class HTMLFrameOwnerElement : public HTMLElement, public FrameOwner {
HTMLInputElement.idl 24 interface HTMLInputElement : HTMLElement {
46 readonly attribute HTMLElement list;
HTMLLabelElement.h 28 #include "core/html/HTMLElement.h"
33 class HTMLLabelElement FINAL : public HTMLElement, public FormAssociatedElement {
HTMLFrameOwnerElement.cpp 100 : HTMLElement(tagName, document)
189 return m_contentFrame && HTMLElement::isKeyboardFocusable();
263 HTMLElement::trace(visitor);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
ColorInputType.cpp 206 HTMLElement* colorSwatch = shadowColorSwatch();
213 HTMLElement* ColorInputType::shadowColorSwatch() const
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
touch-action-tests.js 7 if (shadowTrees.length > 0 && !HTMLElement.prototype.createShadowRoot) {
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXListBoxOption.cpp 160 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = selectElement->listItems();
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
InsertionPoint.h 37 #include "core/html/HTMLElement.h"
41 class InsertionPoint : public HTMLElement {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControl.h 44 HTMLElement* innerEditorElement() const;
RenderTextControlSingleLine.h 78 HTMLElement* innerSpinButtonElement() const;
RenderTextControlSingleLine.cpp 64 inline HTMLElement* RenderTextControlSingleLine::innerSpinButtonElement() const
115 HTMLElement* placeholderElement = inputElement()->placeholderElement();
170 HTMLElement* placeholderElement = inputElement()->placeholderElement();
239 if (HTMLElement* placeholder = inputElement()->placeholderElement())
318 HTMLElement* spinButton = innerSpinButtonElement();
  /external/chromium_org/third_party/polymer/components-chromium/core-animation/
core-animation-group-extracted.js 17 * @type HTMLElement|Node|Array|Array<HTMLElement|Node>
  /external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp 104 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = select->listItems();
106 for (WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >::const_iterator i(listItems.begin()); i != listItems.end(); ++i) {
119 for (WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >::const_iterator i(listItems.begin()); i != listItems.end(); ++i) {

Completed in 383 milliseconds

<<11121314151617181920