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

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

Issue 1461473002: Ensure that the auto scroll state in the AutoscrollController is cleared if the scroll operation cl… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove usage of setTimeout from the layout test Created 5 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 <!DOCTYPE html>
2 <script>
3 function onLoad() {
4 document.getElementById("overflow_div").style.overflow = "scroll";
skobes 2015/11/20 00:10:17 Why is this style changed in onload?
ananta 2015/11/20 01:17:34 Removed.
5 }
6 </script>
7 <style>
8 #overflow_div {
9 border: 1px solid black;
10 background-color: lightblue;
11 width: 100px;
12 height: 100px;
13 overflow: visible;
14 }
15 </style>
16
17 <body onload="onLoad();">
18
19 <div id="overflow_div" class="overflow_div">
20 <span id="textInFrame"> Try to autoscroll this text.<br> </span>
21 PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED PASSED
22 </div>
23
24 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698