Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / webintents / web-intents-delivery-reuse.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <script type="text/javascript">
8     shouldBeNull('webkitIntent');
9
10     webkitIntent = "foo";
11     shouldBeEqualToString("webkitIntent", "foo");
12     shouldBeEqualToString("window.webkitIntent", "foo");
13
14     webkitIntent = null;
15     shouldBeNull('webkitIntent');
16
17     webkitIntent = "bar";
18     shouldBeEqualToString("webkitIntent", "bar");
19 </script>
20 <script src="../fast/js/resources/js-test-post.js"></script>
21 </body>
22 </html>