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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/listbox-scrollbar-incremental-load.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
(Empty)
1 <p>
2 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13500">http://bu gs.webkit.org/show_bug.cgi?id=13500</a>
3 REGRESSION: Listbox scrollbar does not reflect actual scrolled position when selected option is added after layout</i>.
4 </p>
5 <p>
6 The list box should be scrolled all the way down, showing the selected optio n
7 &ldquo;Seven&rdquo;. The scroller should be at the bottom of the scroll bar
8 to reflect this.
9 </p>
10 <select size="4">
11 <option>One</option>
12 <option>Two</option>
13 <option>Three</option>
14 <option>Four</option>
15 <script>
16 document.body.offsetTop;
17 testRunner.waitUntilDone();
18 setTimeout('testRunner.notifyDone();', 0);
19 </script>
20 <option>Five</option>
21 <option>Six</option>
22 <option selected>Seven</option>
23 </select>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698