OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../fast/js/resources/js-test-pre.js"></script> |
4 <script src="resources/web-intents-testing.js"></script> | 4 <script src="resources/web-intents-testing.js"></script> |
5 <script> | 5 <script> |
6 function buttonClicked() { | 6 function buttonClicked() { |
7 navigator.startActivity(new Intent("action1", "mime/type1", "test")); | 7 navigator.webkitStartActivity(new WebKitIntent("action1", "mime/type1",
"test")); |
8 debug("* sent intent"); | 8 debug("* sent intent"); |
9 } | 9 } |
10 </script> | 10 </script> |
11 </head> | 11 </head> |
12 <body onload="simulateButtonPress()"> | 12 <body onload="simulateButtonPress()"> |
13 <input type="button" id="button" value="Start Web Intent" onmouseup="buttonClick
ed()"> | 13 <input type="button" id="button" value="Start Web Intent" onmouseup="buttonClick
ed()"> |
14 <script src="../fast/js/resources/js-test-post.js"></script> | 14 <script src="../fast/js/resources/js-test-post.js"></script> |
15 </body> | 15 </body> |
16 </html> | 16 </html> |
OLD | NEW |