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

Side by Side Diff: LayoutTests/fast/forms/select/listbox-appearance-separator.html

Issue 801283003: Regression: Add back support for hr elements in select listbox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/forms/suggested-value-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 <head>
3 <script>
4 window.enablePixelTesting = true;
5 </script>
6 <script src="../../../resources/js-test.js"></script>
7 </head>
8 <body>
9 <script>
10 if (window.testRunner)
11 testRunner.setUseMockTheme(false);
12 </script>
13
14 <p>There should be a separator between two selected options.</p>
15
16 <select multiple id="listbox"></select>
17
18 <script>
19 var listbox = document.getElementById('listbox');
20 listbox.appendChild(new Option('foo', 'foo', true, true));
21 listbox.appendChild(document.createElement('hr'));
22 listbox.appendChild(new Option('bar', 'bar', true, true));
23 </script>
24
25 </body>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/forms/suggested-value-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698