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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/resources/page-with-scrollable-div-overflow-y-hidden-body.html

Issue 1365853003: LayoutBox::scrollRectToVisible doesn't respect overflow:hidden property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove the now unnecessary code from Patchset 1 Created 5 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
OLDNEW
(Empty)
1 <style>
2 body {
3 width: 800px;
4 height: 800px;
5 overflow-y: hidden;
6 }
7
8 #text-wrapper {
9 padding: 20px;
10 overflow-y: scroll;
11 background-color:#ccc;
12 height: 40px;
13 width: 100px;
14 }
15 </style>
16 <html>
17 <body>
18 <div id="text-wrapper">
19 <span id="select">This text could be anything but should be long enough to be scrollable.</span>
20 </div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698