コード例 #1
0
ファイル: LayoutTextControl.cpp プロジェクト: mirror/chromium
HTMLElement* LayoutTextControl::innerEditorElement() const {
  return textFormControlElement()->innerEditorElement();
}
コード例 #2
0
HTMLElement* RenderTextControl::innerTextElement() const
{
    return textFormControlElement()->innerTextElement();
}
コード例 #3
0
ファイル: LayoutTextControl.cpp プロジェクト: mirror/chromium
void LayoutTextControl::updateFromElement() {
  Element* innerEditor = innerEditorElement();
  if (innerEditor && innerEditor->layoutObject())
    updateUserModifyProperty(*textFormControlElement(),
                             innerEditor->layoutObject()->mutableStyleRef());
}