Git init
[framework/web/webkit-efl.git] / LayoutTests / fast / spatial-navigation / snav-imagemap-overlapped-areas.html
1 <html>
2   <head>
3
4     <script src="../js/resources/js-test-pre.js"></script>
5     <script src="resources/spatial-navigation-utils.js"></script>
6     <script type="application/javascript">
7
8     var resultMap = [
9       ["Down", "4"],
10       ["Down", "1"],
11       ["Down", "2"],
12       ["Down", "5"],
13       ["Up", "4"],
14       ["Up", "3"],
15       ["Up", "2"],
16       ["Left", "1"],
17       ["Right", "3"],
18       ["Left", "2"],
19       ["Up", "1"],
20       ["Up", "start"],
21       ["DONE", "DONE"]
22     ];
23
24     if (window.layoutTestController) {
25       layoutTestController.dumpAsText();
26       layoutTestController.setSpatialNavigationEnabled(true);
27       layoutTestController.overridePreference("WebKitTabToLinksPreferenceKey", 1);
28       layoutTestController.waitUntilDone();
29     }
30
31     function runTest()
32     {
33       // starting the test itself: get to a known place.
34       document.getElementById("start").focus();
35
36       initTest(resultMap, testCompleted);
37     }
38
39     function testCompleted()
40     {
41       if (window.layoutTestController)
42         layoutTestController.notifyDone();
43     }
44
45     window.onload = runTest;
46
47     </script>
48     <script src="js/resources/js-test-post.js"></script>
49   </head>
50
51   <body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
52   <map name="map" title="map" id="firstmap">
53     <area shape="circle" coords="45,45,25" href="#" id="1">
54     <area shape="rect" coords="45,60,95,110" href="#" id="2">
55     <area shape="poly" coords="80,20,130,20,130,180,30,180,30,130,80,130" href="#" id="3">
56     <area shape="default" href="#" id="4">
57   </map>
58
59     <a id="start" href="a"><img src="resources/green.png" width=50px height=50px></a>
60     <div>
61       <img src="resources/green.png" width=200px height=200px usemap="#map">
62     </div>
63     <a id="5" href="a"><img src="resources/green.png" width=50px height=50px></a>
64     <div id="console"></div>
65     <div>This test tests that areas of an imagemap can be reached with spatial navigation even if they are overlapped.</div>
66   </body>
67 </html>
68