1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19

content / test / data / accessibility / html / svg-g.html [blame]

<!--
@BLINK-ALLOW:htmlTag='g'
-->
<!DOCTYPE html>
<html>
<body>

<svg aria-label="svg">
  <g>
    <text x="10" y="10" fill="red">Group 1 Text 1</text>
    <text x="10" y="100" fill="red">Group 1 Text 2</text>
  </g>
  <g>
    <text x="200" y="10" fill="red">Group 2 Text 1</text>
  </g>
</svg>

</body>
</html>