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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-subframe.html

Issue 1616183002: Don't composite layers with an invisible frameview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test expectation. Created 4 years, 10 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .animatedBackground {
4 width: 70px;
5 height: 80px;
6 position: absolute;
7 background: url("./square-blue-100x100.png") no-repeat 0 0 transparent;
8 animation: anim 4s steps(6) infinite;
9 }
10
11 .transformedItem {
12 transform: translate3d(42px, 43px, 0);
13 width: 40px;
14 height: 50px;
15 background-color: green;
16 }
17
18 @keyframes anim {
19 100% {
20 background-position: 9px 10px
21 }
22 }
23 </style>
24 <div class="animatedBackground"></div>
25 <div class="transformedItem"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698