tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / svg / custom / focus-event-handling-keyboard.xhtml
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script src="../../fast/js/resources/js-test-pre.js"></script>
4 </head>
5 <body>
6
7 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="300">
8   <rect id="rect1" width="100" height="100" fill="green"/>
9   <g id="g">
10     <rect id="rect2" x="100" y="0" width="100" height="100" fill="green"/>
11   </g>
12   <defs>
13     <rect id="rect3" width="100" height="100" fill="green"/>
14     <symbol id="symbol">
15       <rect id="rect4" width="100" height="100" fill="green"/>
16     </symbol>
17   </defs>
18   <use id="use" x="200" xlink:href="#rect3"/>
19   <use id="usesymbol" x="300" xlink:href="#symbol"/>
20   <switch id="switch">
21     <rect id="rect5" y="100" width="100" height="100" fill="green"/>
22   </switch>
23   <image xlink:href="resources/green-checker.png" x="100" y="100" height="100" width="100" id="img"/>
24   <text id="txt" x="220" y="150">TEST</text>
25 </svg>
26
27
28 <p id="description"></p>
29 <div id="console"></div>
30 <script src="resources/focus-event-handling-keyboard.js"></script>
31 </body>
32 </html>