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

content / test / data / accessibility / html / svg-with-clickable-rect.html [blame]

<!--
@AURALINUX-ALLOW:class:*
@AURALINUX-ALLOW:id:*
@AURALINUX-ALLOW:tag:*
@BLINK-ALLOW:className*
@BLINK-ALLOW:htmlTag*
-->
<svg>
  <style>
    rect { cursor: pointer }
    .round { rx: 5px; fill: green; }
  </style>
  <rect id="clickable" width="10" height="10">
    <set attributeName="class" to="round" begin="clickable.click" dur="2s" />
  </rect>
</svg>