1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14

content / test / data / accessibility / html / label-with-presentational-child.html [blame]

<html>
<body>
<input id="test1" />
<label for="test1">
  <span role="presentation" aria-label="foo">
    <span aria-label="bar">baz</span></span></label><br />
<input id="test2" />
  <label for="test2">
  <span role="presentation">
    <span aria-label="bar">baz</span>
  </span>
</label>
</body>
</html>