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

Side by Side Diff: LayoutTests/fast/scrolling/absolute-position-behind-scrollbar.html

Issue 1172153004: Absolute-position the initial containing block. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | LayoutTests/fast/scrolling/absolute-position-behind-scrollbar-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <style>
4 #a {
5 position: absolute;
6 background-color: #def;
7 left: 100px;
8 top: 100px;
9 width: 1000px;
10 height: 1000px;
11 }
12 </style>
13 Tests that the scrollbar can be clicked even when it clips absolute-positioned c ontent.
14 <div id="a"></div>
15 <script>
16
17 eventSender.mouseMoveTo(790, 500);
18 eventSender.mouseDown();
19 eventSender.mouseUp();
20
21 shouldBeTrue(String(scrollY > 0));
22
23 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/scrolling/absolute-position-behind-scrollbar-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698