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

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

Issue 11090042: Revert 130719 - Merge 130717 - HTMLSelectElement::typeAheadFind depends on implementation dependent… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/select/select-typeahead-crash-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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <p id="description"></p>
8 <p>Please run this with DumpRenderTree.</p>
9 <select id="test"><optgroup></optgroup><optgroup></optgroup></select>
10 <div id="console"></div>
11 <script>
12 description('Select element without option but optgroup causes crash on key pres s');
13 function keyDown(key, modifiers)
14 {
15 if (!window.eventSender)
16 return;
17 eventSender.keyDown(key, modifiers);
18 }
19 var test = document.getElementById("test");
20 test.focus();
21 keyDown('a');
22 keyDown('b');
23 </script>
24 <script src="../../js/resources/js-test-post.js"></script>
25 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/forms/select/select-typeahead-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698