Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 </head> | |
| 5 <body> | |
| 6 <iframe name='frame1' src='data:text/html,<input><div>frame1</div>'></iframe> | |
| 7 <iframe name='frame2' src='data:text/html,<input><div>frame2</div>'></iframe> | |
| 8 </body> | |
| 9 <script> | |
| 10 function focusframe1() { | |
| 11 frames[0].focus(); | |
| 12 } | |
| 13 function focusframe2() { | |
| 14 frames[1].focus(); | |
| 15 } | |
| 16 </script> | |
| 17 </html> | |
| OLD | NEW |