- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / automation / sends_message_on_load.html
1 <!-- Used for testing that the automation code waits until the onload handler
2 ---- has finished.
3 !-->
4 <html>
5   <script>
6     window.onload = function() {
7       window.domAutomationController.setAutomationId(0);
8       window.domAutomationController.send(1);
9     }
10   </script>
11 </html>