Searched refs:innerEditor (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTextControl.cpp | 68 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/ |
D | HTMLTextFormControlElement.cpp | 282 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/ |
D | TextFieldInputType.cpp | 291 …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/ |
D | ShadowElementNames.h | 46 const AtomicString& innerEditor();
|
D | ShadowElementNames.cpp | 74 const AtomicString& innerEditor() in innerEditor() function
|
D | TextControlInnerElements.cpp | 110 element->setAttribute(idAttr, ShadowElementNames::innerEditor()); in create()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | SpellChecker.cpp | 747 HTMLElement* innerEditor = textFormControlElement->innerEditorElement(); in didEndEditingOnTextField() local 751 for (Node* node = innerEditor; node; node = NodeTraversal::next(*node, innerEditor)) { in didEndEditingOnTextField()
|