Home
last modified time | relevance | path

Searched refs:innerEditor (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTextControl.cpp68 Element* innerEditor = innerEditorElement(); in styleDidChange() local
69 if (!innerEditor) in styleDidChange()
71 RenderBlock* innerEditorRenderer = toRenderBlock(innerEditor->renderer()); in styleDidChange()
78 innerEditor->setNeedsStyleRecalc(SubtreeStyleChange); in styleDidChange()
105 Element* innerEditor = innerEditorElement(); in textBlockLogicalWidth() local
106 ASSERT(innerEditor); in textBlockLogicalWidth()
109 if (innerEditor->renderer()) in textBlockLogicalWidth()
110 … unitWidth -= innerEditor->renderBox()->paddingStart() + innerEditor->renderBox()->paddingEnd(); in textBlockLogicalWidth()
117 Element* innerEditor = innerEditorElement(); in updateFromElement() local
118 if (innerEditor && innerEditor->renderer()) in updateFromElement()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextFormControlElement.cpp282 static Position positionForIndex(HTMLElement* innerEditor, int index) in positionForIndex() argument
286 Node* node = NodeTraversal::next(*innerEditor, innerEditor); in positionForIndex()
289 return Position(innerEditor, 0, Position::PositionIsOffsetInAnchor); in positionForIndex()
292 Node* lastBrOrText = innerEditor; in positionForIndex()
293 …r (Node* node = NodeTraversal::next(*innerEditor, innerEditor); node; node = NodeTraversal::next(*… in positionForIndex()
317 static int indexForPosition(HTMLElement* innerEditor, const Position& passedPosition) in indexForPosition() argument
319 …if (!innerEditor || !innerEditor->contains(passedPosition.anchorNode()) || passedPosition.isNull()) in indexForPosition()
322 if (positionBeforeNode(innerEditor) == passedPosition) in indexForPosition()
330 ASSERT(innerEditor->contains(startNode)); in indexForPosition()
332 for (Node* node = startNode; node; node = NodeTraversal::previous(*node, innerEditor)) { in indexForPosition()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DTextFieldInputType.cpp291 …RefPtrWillBeRawPtr<TextControlInnerEditorElement> innerEditor = TextControlInnerEditorElement::cre… in createShadowSubtree() local
293 shadowRoot->appendChild(innerEditor.release()); in createShadowSubtree()
302 editingViewPort->appendChild(innerEditor.release()); in createShadowSubtree()
345 RefPtrWillBeRawPtr<Element> innerEditor = element().innerEditorElement(); in listAttributeTargetChanged() local
346 innerEditor->parentNode()->replaceChild(rpContainer.get(), innerEditor.get()); in listAttributeTargetChanged()
348 editingViewPort->appendChild(innerEditor.release()); in listAttributeTargetChanged()
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DShadowElementNames.h46 const AtomicString& innerEditor();
DShadowElementNames.cpp74 const AtomicString& innerEditor() in innerEditor() function
DTextControlInnerElements.cpp110 element->setAttribute(idAttr, ShadowElementNames::innerEditor()); in create()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DSpellChecker.cpp747 HTMLElement* innerEditor = textFormControlElement->innerEditorElement(); in didEndEditingOnTextField() local
751 for (Node* node = innerEditor; node; node = NodeTraversal::next(*node, innerEditor)) { in didEndEditingOnTextField()