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

Unified Diff: third_party/WebKit/LayoutTests/animations/rotate3d-negated-axes-expected.html

Issue 2391003004: Fix common axes logic to detect negated axes as not common (Closed)
Patch Set: Update expectation Created 4 years, 2 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/animations/rotate3d-negated-axes-expected.html
diff --git a/third_party/WebKit/LayoutTests/animations/rotate3d-negated-axes-expected.html b/third_party/WebKit/LayoutTests/animations/rotate3d-negated-axes-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..cf08a9bf9475518ca45f2f985307a5650ecf8f02
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/animations/rotate3d-negated-axes-expected.html
@@ -0,0 +1,13 @@
+<style>
+@keyframes test {
+ from { transform: rotate3d(0, 0, 1, 90deg); }
+ to { transform: rotate3d(0, 0, 1, -90deg); }
+}
+#target {
+ animation: test 2s -1s paused;
+ width: 100px;
+ height: 100px;
+ border: solid;
+}
+</style>
+<div id="target"></div>

Powered by Google App Engine
This is Rietveld 408576698