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

Unified Diff: LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html

Issue 1318273003: Prevent will-change:transform from changing the computed value of transform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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: LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html
diff --git a/LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html b/LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html
new file mode 100644
index 0000000000000000000000000000000000000000..cf9f7bbb1df5d155e67320e3f47bbfeabc6ea4c5
--- /dev/null
+++ b/LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+@keyframes test {
+ to {transform: rotate(360deg);}
+}
+#target {
+ border-left: solid;
+ border-top: solid;
+ will-change: transform;
+ animation-name: test;
+ animation-duration: 2e10s;
+ animation-delay: -1e10s;
+ animation-timing-function: linear;
+ width: 100px;
+ height: 100px;
+ margin: 50px;
+}
+</style>
+Th following shape should look like: _|
+<div id="target"></div>

Powered by Google App Engine
This is Rietveld 408576698