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

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

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

Powered by Google App Engine
This is Rietveld 408576698