Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / events / imagemap-norender-crash.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../js/resources/js-test-pre.js"></script>
5 <body id="body">
6
7 <h1 id="header" tabindex=0>start element</h1>
8 <div><img src="resources/abe.png" alt="test" style="width:679px; height:112px" usemap="#Map"></div>
9 <div style="display:none"><map name="Map" id="Map"><area shape="rect" coords=coords="5,48,247,97" href="http://www.webkit.org/" target="_blank" id="area1"/></map></div>
10
11 <p id="description"></p>
12 <div id="console"></div>
13
14 <script>
15
16     description("This tests tabbing to an image map link where the map might not have a renderer won't crash.");
17
18     // start at the right place
19     document.getElementById("header").focus();
20
21     // tab forward
22     eventSender.keyDown('\t');
23     shouldBe("document.activeElement.id", "'area1'");
24 </script>
25
26 <script src="../js/resources/js-test-post.js"></script>
27 </body>
28 </html>