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

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
« no previous file with comments | « no previous file | LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..18c61a5f393f8e6026aaa8e3038f38a4ff5249ff
--- /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>
+The following shape should look like: _|
+<div id="target"></div>
« no previous file with comments | « no previous file | LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698