Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/radio/radio-group-arrow-cycle-edge.html

Issue 1944923002: Fix for Alt+Left/Right page navigation with focus on radio buttons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <body> 3 <body>
4 <script src="../resources/common.js"></script> 4 <script src="../resources/common.js"></script>
5 5
6 <script src="../../../resources/js-test.js"></script> 6 <script src="../../../resources/js-test.js"></script>
7 7
8 <form name=alpha> 8 <form name=alpha>
9 <input type="radio" name="fruit" id="apple"><br> 9 <input type="radio" name="fruit" id="apple"><br>
10 <input type="radio" name="fruit" id="banana"><br> 10 <input type="radio" name="fruit" id="banana"><br>
(...skipping 30 matching lines...) Expand all
41 shouldBeTrue('document.getElementById("cucumber").checked'); 41 shouldBeTrue('document.getElementById("cucumber").checked');
42 42
43 clickElement(document.getElementById('pumpkin')); 43 clickElement(document.getElementById('pumpkin'));
44 shouldBeTrue('document.getElementById("pumpkin").checked'); 44 shouldBeTrue('document.getElementById("pumpkin").checked');
45 45
46 eventSender.keyDown('downArrow'); 46 eventSender.keyDown('downArrow');
47 shouldBeTrue('document.getElementById("pumpkin").checked'); 47 shouldBeTrue('document.getElementById("pumpkin").checked');
48 48
49 eventSender.keyDown('upArrow'); 49 eventSender.keyDown('upArrow');
50 shouldBeTrue('document.getElementById("pumpkin").checked'); 50 shouldBeTrue('document.getElementById("pumpkin").checked');
51 51
bokan 2016/05/04 12:12:13 Please remove the whitespace change to this file.
52 </script> 52 </script>
53 </body> 53 </body>
54 </html> 54 </html>
bokan 2016/05/04 12:12:13 While you're here, please remove this </html> (the
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698