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

Side by Side Diff: LayoutTests/paint/overflow/fixed-children-should-not-scroll.html

Issue 1110653003: [Reland] Correct fixed-position recording for Slimming Paint (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-display.js"></script>
3 <style>
4 #bloat {
5 height: 10000px;
6 }
7
8 #fixed {
9 position: fixed;
10 left: 300px;
11 top: 200px;
12 width: 100px;
13 height: 100px;
14 background-color: green;
15 }
16
17 #fixed-child {
18 margin-left: 25px;
19 margin-top: 25px;
20 width: 50px;
21 height: 50px;
22 background-color: blue;
23 }
24
25 ::-webkit-scrollbar {
26 width: 0px;
27 height: 0px;
28 }
29 </style>
30 <div id="bloat"></div>
31 <div id="fixed">
32 <div id="fixed-child"></div>
33 </div>
34 <script>
35 runAfterDisplay(function() {
36 window.scrollTo(0, 100);
37 }, true);
38 </script>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/paint/overflow/fixed-children-should-not-scroll-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698