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

Unified Diff: LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html

Issue 1347493004: Recomposite transform animations when CSS zoom changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests Created 5 years, 3 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/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html
diff --git a/LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html b/LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..b9ff1dcd8e9eddcc4b0cff4733b995373ba5ef71
--- /dev/null
+++ b/LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<style>
+div {
+ position: absolute;
+ width: 100px;
+ height: 100px;
+ background: black;
+ animation: test 1e8s;
+}
+@keyframes test {
+ from {transform: translate(100px, 100px);}
+ to {transform: translate(100px, 100px);}
+}
+</style>
+<div></div>
+<script>
+internals.setZoomFactor(2);
+</script>

Powered by Google App Engine
This is Rietveld 408576698