Title: [265674] trunk/LayoutTests
Revision
265674
Author
[email protected]
Date
2020-08-14 09:47:17 -0700 (Fri, 14 Aug 2020)

Log Message

rdar://66995964 (REGRESSION (r265358): [ Win10 wk1 ] animations/steps-transform-rendering-updates.html is a constant failure (215454))
Rebaseline Test - Remore html file.

Unreviewed test gardening.

* platform/wincairo/animations/steps-transform-rendering-updates.html: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (265673 => 265674)


--- trunk/LayoutTests/ChangeLog	2020-08-14 16:39:52 UTC (rev 265673)
+++ trunk/LayoutTests/ChangeLog	2020-08-14 16:47:17 UTC (rev 265674)
@@ -21,6 +21,15 @@
 2020-08-14  Karl Rackler  <[email protected]>
 
         rdar://66995964 (REGRESSION (r265358): [ Win10 wk1 ] animations/steps-transform-rendering-updates.html is a constant failure (215454))
+        Rebaseline Test - Remore html file.
+
+        Unreviewed test gardening.
+
+        * platform/wincairo/animations/steps-transform-rendering-updates.html: Removed.
+
+2020-08-14  Karl Rackler  <[email protected]>
+
+        rdar://66995964 (REGRESSION (r265358): [ Win10 wk1 ] animations/steps-transform-rendering-updates.html is a constant failure (215454))
         Rebaseline Test - Remore test expectation.
 
         Unreviewed test gardening.

Deleted: trunk/LayoutTests/platform/wincairo/animations/steps-transform-rendering-updates.html (265673 => 265674)


--- trunk/LayoutTests/platform/wincairo/animations/steps-transform-rendering-updates.html	2020-08-14 16:39:52 UTC (rev 265673)
+++ trunk/LayoutTests/platform/wincairo/animations/steps-transform-rendering-updates.html	2020-08-14 16:47:17 UTC (rev 265674)
@@ -1,51 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-    <script src=""
-    <style>
-        #box {
-            width: 100px;
-            height: 100px;
-            background-color: silver;
-        }
-        
-        #box.animating {
-            animation: spinner 0.25s steps(2) 1;     
-        }
-
-        @keyframes spinner {
-            from { transform:rotate(0deg); }
-            to   { transform:rotate(360deg); }
-        }
-    </style>
-    <script>
-        window.jsTestIsAsync = true;
-
-        let count = 0;
-        window.addEventListener('load', () => {
-            if (!window.internals) {
-                finishJSTest();
-                return;
-            }
-
-            let box = document.getElementById('box');
-            box.addEventListener('animationstart', () => {
-                internals.startTrackingRenderingUpdates();
-                shouldBe('count', '0');
-            }, false);
-            box.addEventListener('animationend', () => {
-                count = internals.renderingUpdateCount();
-                shouldBeTrue('count < 6');
-                finishJSTest();
-            }, false);
-            
-            box.classList.add('animating');
-        }, false);
-    </script>
-</head>
-<body>
-    <div id="box"></div>
-    <div id="console"></div>
-    <script src=""
-</body>
-</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to