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

content / test / data / accessibility / aria / aria-textbox-with-non-text-children.html [blame]

<!DOCTYPE html>
<html>
<body>
<div role="textbox" tabindex="0" aria-label="not editable">
  focusable:
  <button>ok</button>
  <a href="#">link</a>
  <label>name: <input></label>
</div>
<div role="textbox" contenteditable aria-label="editable">
  focusable:
  <button>ok</button>
  <a href="#">link</a>
  <label>name: <input></label>
</div>
<div role="textbox" aria-label="not editable or focusable">
  focusable:
  <button>ok</button>
  <a href="#">link</a>
  <label>name: <input></label>
</div>
<div role="textbox" aria-label="not editable, img child"><img /></div>
</body>
</html>