blob: 794ada5db3f37ddfb2a7127f7e785c5b3e4ce7b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!-- Used for testing that the automation code waits until the onload handler
---- has finished.
!-->
<html>
<script>
window.onload = function() {
window.domAutomationController.setAutomationId(0);
window.domAutomationController.send(1);
}
</script>
</html>
|