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

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

Powered by Google App Engine
This is Rietveld 408576698