upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / LayoutTests / webintents / web-intents-invoke.html
1 <html>
2   <head>
3     <script src="../fast/js/resources/js-test-pre.js"></script>
4     <script src="resources/web-intents-testing.js"></script>
5     <script>
6       function buttonClicked() {
7         navigator.webkitStartActivity(new WebKitIntent("action1", "mime/type1", "test"));
8           debug("* sent intent");
9       }
10     </script>
11   </head>
12 <body onload="simulateButtonPress()">
13 <input type="button" id="button" value="Start Web Intent" onmouseup="buttonClicked()">
14 <script src="../fast/js/resources/js-test-post.js"></script>
15 </body>
16 </html>