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

Side by Side Diff: LayoutTests/fast/forms/select/select-disabled.html

Issue 11363189: Merge 133860 - User can change a disabled select (drop down box) (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/select/select-disabled-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 7
8 <select id=select1 size=3> 8 <select id=select1 size=3>
9 <option selected>a</option> 9 <option selected>a</option>
10 <option>b</option> 10 <option>b</option>
(...skipping 28 matching lines...) Expand all
39 select2.disabled = true; 39 select2.disabled = true;
40 eventSender.keyDown('downArrow'); 40 eventSender.keyDown('downArrow');
41 shouldBeEqualToString('select2.value', 'b'); 41 shouldBeEqualToString('select2.value', 'b');
42 eventSender.keyDown('c'); 42 eventSender.keyDown('c');
43 shouldBeEqualToString('select2.value', 'b'); 43 shouldBeEqualToString('select2.value', 'b');
44 44
45 </script> 45 </script>
46 <script src="../../js/resources/js-test-post.js"></script> 46 <script src="../../js/resources/js-test-post.js"></script>
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/forms/select/select-disabled-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698