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

Side by Side Diff: LayoutTests/fast/repaint/resources/iframe-scroll-repaint-iframe.html

Issue 25741004: set and get scrollTop/Left through documentElement and body should be symmetric, according to the d… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: set and get scrollTop/Left through documentElement and body should be symmetric, according to the d… Created 7 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
« no previous file with comments | « LayoutTests/fast/multicol/scrolling-overflow.html ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html style="background-color:#eeeeee; overflow:hidden"> 2 <html style="background-color:#eeeeee; overflow:hidden">
3 <div style="height:500px"> 3 <div style="height:500px">
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.waitUntilDone() 6 testRunner.waitUntilDone()
7 7
8 window.setTimeout(function() { 8 window.setTimeout(function() {
9 if (window.testRunner) 9 if (window.testRunner)
10 testRunner.display(); 10 testRunner.display();
11 11
12 document.body.scrollTop = 20; 12 document.documentElement.scrollTop = 20;
13 if (window.testRunner) 13 if (window.testRunner)
14 testRunner.notifyDone(); 14 testRunner.notifyDone();
15 }, 50); 15 }, 50);
16 </script> 16 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/scrolling-overflow.html ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698