Title: [241977] trunk/LayoutTests
Revision
241977
Author
[email protected]
Date
2019-02-22 18:10:58 -0800 (Fri, 22 Feb 2019)

Log Message

Rotation animations sometimes use the wrong origin (affects apple.com)
https://bugs.webkit.org/show_bug.cgi?id=194878
<rdar://problem/43908047>

Reviewed by Simon Fraser.

Forgot another expected results file.

* legacy-animation-engine/animations/additive-transform-animations-expected.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (241976 => 241977)


--- trunk/LayoutTests/ChangeLog	2019-02-23 02:06:42 UTC (rev 241976)
+++ trunk/LayoutTests/ChangeLog	2019-02-23 02:10:58 UTC (rev 241977)
@@ -1,3 +1,15 @@
+2019-02-22  Dean Jackson  <[email protected]>
+
+        Rotation animations sometimes use the wrong origin (affects apple.com)
+        https://bugs.webkit.org/show_bug.cgi?id=194878
+        <rdar://problem/43908047>
+
+        Reviewed by Simon Fraser.
+
+        Forgot another expected results file.
+
+        * legacy-animation-engine/animations/additive-transform-animations-expected.html: Added.
+
 2019-02-22  Ryosuke Niwa  <[email protected]>
 
         Skip the test added in r241932 on iOS for now.

Added: trunk/LayoutTests/legacy-animation-engine/animations/additive-transform-animations-expected.html (0 => 241977)


--- trunk/LayoutTests/legacy-animation-engine/animations/additive-transform-animations-expected.html	                        (rev 0)
+++ trunk/LayoutTests/legacy-animation-engine/animations/additive-transform-animations-expected.html	2019-02-23 02:10:58 UTC (rev 241977)
@@ -0,0 +1,33 @@
+<style>
+    #original {
+        position: absolute;
+        top: 100px;
+        left: 100px;
+        width: 100px;
+        height: 100px;
+        background-color: blue;
+    }
+
+    #rotator {
+        position: absolute;
+        top: 100px;
+        left: 100px;
+        width: 100px;
+        height: 100px;
+        background-color: red;
+        transform: rotate(40deg) translate(50%, 50%);
+    }
+
+    #cover {
+        position: absolute;
+        top: 150px;
+        left: 50px;
+        width: 200px;
+        height: 150px;
+        background-color: green;
+    }
+</style>
+<p>You should not see any of the rotating red rectangle</p>
+<div id="original"></div>
+<div id="rotator"></div>
+<div id="cover"></div>
Property changes on: trunk/LayoutTests/legacy-animation-engine/animations/additive-transform-animations-expected.html
___________________________________________________________________

Added: svn:eol-style

+native \ No newline at end of property

Added: svn:keywords

+Date Revision \ No newline at end of property

Added: svn:mime-type

+text/html \ No newline at end of property
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to