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

Side by Side Diff: LayoutTests/fast/css/fixed-overlaps-absolute-in-clip.html

Issue 179833006: Fix clippingContainer for fixed position elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: const_cast Created 6 years, 9 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
« no previous file with comments | « no previous file | LayoutTests/fast/css/fixed-overlaps-absolute-in-clip-expected.html » ('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 <style>
3 #absolute {
4 position: absolute;
5 background-color: chartreuse;
6 top: 100px;
7 left: 100px;
8 width: 200px;
9 height: 200px;
10 clip: rect(0, 200px, 20px, 0px);
11 }
12 #fixed {
13 position: fixed;
14 top: 50px;
15 left: 50px;
16 background-color: salmon;
17 width: 100px;
18 height: 100px;
19 }
20 #overlap {
21 position:absolute;
22 background-color: pink;
23 top: 0;
24 left: 0;
25 height: 75px;
26 width: 75px;
27 -webkit-transform: translateZ(0);
28 }
29 </style>
30 <div id="overlap"></div>
31 <div id="absolute">
32 <div id="fixed"></div>
33 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/fixed-overlaps-absolute-in-clip-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698