chromium/third_party/blink/web_tests/svg/custom/focus-event-handling-keyboard.xhtml

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="300">
  <rect id="rect1" width="100" height="100" fill="green"/>
  <g id="g">
    <rect id="rect2" x="100" y="0" width="100" height="100" fill="green"/>
  </g>
  <defs>
    <rect id="rect3" width="100" height="100" fill="green"/>
    <symbol id="symbol">
      <rect id="rect4" width="100" height="100" fill="green"/>
    </symbol>
  </defs>
  <use id="use" x="200" xlink:href="#rect3"/>
  <use id="usesymbol" x="300" xlink:href="#symbol"/>
  <switch id="switch">
    <rect id="rect5" y="100" width="100" height="100" fill="green"/>
  </switch>
  <image xlink:href="resources/green-checker.png" x="100" y="100" height="100" width="100" id="img"/>
  <text id="txt" x="220" y="150">TEST</text>
</svg>


<p id="description"></p>
<div id="console"></div>
<script src="resources/focus-event-handling-keyboard.js"></script>
</body>
</html>