1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25

content / test / data / accessibility / html / contenteditable-with-embedded-contenteditables.html [blame]

<!--
@WIN-ALLOW:caret_offset*
@WIN-ALLOW:IA2_STATE_EDITABLE
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:n_selections*
@WIN-ALLOW:selection_start*
@WIN-ALLOW:selection_end*
@BLINK-ALLOW:nonAtomicTextFieldRoot=true
@BLINK-ALLOW:editable*
@BLINK-ALLOW:richlyEditable*
@BLINK-ALLOW:textSel*
@AURALINUX-ALLOW:editable
@AURALINUX-ALLOW:multi-line
@AURALINUX-ALLOW:caret_offset*
@AURALINUX-ALLOW:selection_start*
@AURALINUX-ALLOW:selection_end*
-->
<div contenteditable>
  <p>This is editable.</p>
  <div contenteditable="false">
    This is not editable.<br>
    <p contenteditable="true">But this one is.</p>
  </div>
  <p contenteditable="true">So is this one.</p>
</div>