| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 function focusInputField() { | 6 function focusInputField() { |
| 7 var inputField = document.getElementById("text-field"); | 7 var inputField = document.getElementById("text-field"); |
| 8 inputField.focus(); | 8 inputField.focus(); |
| 9 } | 9 } |
| 10 | 10 |
| 11 function getInputFieldText() { |
| 12 var inputField = document.getElementById("text-field"); |
| 13 return inputField.value; |
| 14 } |
| 15 |
| 11 function onInputFocus() { | 16 function onInputFocus() { |
| 12 domAutomationController.setAutomationId(0); | 17 domAutomationController.setAutomationId(0); |
| 13 domAutomationController.send("input-focus"); | 18 domAutomationController.send("input-focus"); |
| 14 } | 19 } |
| 15 | 20 |
| 16 function onInputBlur() { | 21 function onInputBlur() { |
| 17 domAutomationController.setAutomationId(0); | 22 domAutomationController.setAutomationId(0); |
| 18 domAutomationController.send("input-blur"); | 23 domAutomationController.send("input-blur"); |
| 19 } | 24 } |
| 20 | 25 |
| 21 </script> | 26 </script> |
| 22 </head> | 27 </head> |
| 23 | 28 |
| 24 <body> | 29 <body> |
| 25 This page has a cross-site iframe and a text input field. | 30 This page has a cross-site iframe and a text input field. |
| 26 <input type='text' id='text-field' | 31 <input type='text' id='text-field' |
| 27 onfocus="onInputFocus()" onblur="onInputBlur()"><br> | 32 onfocus="onInputFocus()" onblur="onInputBlur()"><br> |
| 28 <iframe id='subframe' src="/cross-site/b.com/page_with_blur.html"></iframe> | 33 <iframe id='subframe' src="/cross-site/b.com/page_with_blur.html"></iframe> |
| 29 </body> | 34 </body> |
| 30 </html> | 35 </html> |
| 31 | 36 |
| OLD | NEW |