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

Unified Diff: third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html

Issue 1616183002: Don't composite layers with an invisible frameview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove verbose logging. Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html
diff --git a/third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html b/third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..ad8d3d1e91781f7a20515009a7404b71687e584a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
chrishtr 2016/01/28 00:32:31 Rename file to composited-iframe-hidden-subframe.h
wkorman 2016/01/28 00:55:21 Done.
+<style>
+.animatedBackground {
+ width: 70px;
+ height: 80px;
+ position: absolute;
+ background: url("./shine.png") no-repeat 0 0 transparent;
chrishtr 2016/01/28 00:32:31 Try to use an existing infinitely animated gif. Th
wkorman 2016/01/28 00:55:21 Done. Took a 100x100 blue from another existing te
+ background-color: red;
+ animation: shineSmall 4s steps(6) infinite;
+}
+
+.transformedItem {
+ transform: translate3d(42px, 43px, 0);
+ width: 40px;
+ height: 50px;
+ background-color: green;
+}
+
+@keyframes shineSmall {
+ 100% {
+ background-position: 9px 10px
+ }
+}
+</style>
+<div class="animatedBackground"></div>
+<div class="transformedItem"></div>

Powered by Google App Engine
This is Rietveld 408576698