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

Side by Side Diff: LayoutTests/fast/dom/Element/resources/display-none-body-quirks.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 7 years, 1 month 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 <html style=overflow:scroll>
2 <head>
3 <style>
4 head { display:block; width:4000px; height:5000px; border:dotted }
5 </style>
6 <script>
7 function scroll() {
8 document.body.scrollTop = 4000;
9 document.body.scrollLeft = 3000;
10 parent.verifyTest()
11 }
12 </script>
13 </head>
14 <body style=display:none onload="scroll()">
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698