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

Side by Side Diff: LayoutTests/accessibility/insert-selected-option-into-select-causes-crash.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <select id="popup"> 7 <select id="popup">
8 <optgroup id=optgroup1> 8 <optgroup id=optgroup1>
9 </optgroup> 9 </optgroup>
10 </select> 10 </select>
11 <select id="listbox" multiple> 11 <select id="listbox" multiple>
12 <optgroup id=optgroup2> 12 <optgroup id=optgroup2>
13 <option selected> 13 <option selected>
14 </optgroup> 14 </optgroup>
(...skipping 11 matching lines...) Expand all
26 if (window.accessibilityController) 26 if (window.accessibilityController)
27 accessibilityController.accessibleElementById('dummy'); 27 accessibilityController.accessibleElementById('dummy');
28 28
29 var listbox = document.getElementById('listbox'); 29 var listbox = document.getElementById('listbox');
30 listbox.focus(); 30 listbox.focus();
31 31
32 optgroup1.appendChild(optgroup2); 32 optgroup1.appendChild(optgroup2);
33 </script> 33 </script>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698