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

Side by Side Diff: LayoutTests/fast/dom/Element/resources/overflow-scroll-non-scrollable-body-strict.html

Issue 51553002: Fix body.scrollTop/Left for scrollable <body> tags (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 <!DOCTYPE html>
2 <html style=overflow:scroll>
3 <head>
4 <script>
5 function scroll() {
6 document.body.scrollLeft = 200;
7 document.body.scrollTop = 200;
8 document.documentElement.scrollLeft = 100;
9 parent.verifyTest()
10 }
11 </script>
12 </head>
13 <body style=overflow:scroll;width:100px;height:100px onload="scroll()">
14 <div style=position:absolute;width:5000px;border:dotted></div>
15 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698