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

Side by Side Diff: LayoutTests/fast/css/transformed-overflow-hidden-clips-fixed.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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #transformed {
4 overflow: hidden;
5 -webkit-transform: translateZ(0);
6 height: 100px;
7 width: 100px;
8 background-color: salmon;
9 }
10 #fixed {
11 position: fixed;
12 background-color: chartreuse;
13 width: 100px;
14 height: 100px;
15 top: -50px;
16 }
17 </style>
18 <div id="transformed">
19 <div id="fixed"></div>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698