Title: [289727] trunk/LayoutTests
- Revision
- 289727
- Author
- [email protected]
- Date
- 2022-02-13 23:30:57 -0800 (Sun, 13 Feb 2022)
Log Message
Delete fast/animation/request-animation-frame-disabled.html after RequestAnimationFrameEnabled setting is deleted
https://bugs.webkit.org/show_bug.cgi?id=236569
Reviewed by Ryosuke Niwa.
r288797 (Bug 235866) deleted RequestAnimationFrameEnabled setting.
We no longer need fast/animation/request-animation-frame-disabled.html
which tests disabling the setting.
* fast/animation/request-animation-frame-disabled-expected.txt: Removed.
* fast/animation/request-animation-frame-disabled.html: Removed.
* platform/gtk/TestExpectations:
* platform/ios/TestExpectations:
* platform/mac/TestExpectations:
* platform/win/TestExpectations:
Modified Paths
Removed Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (289726 => 289727)
--- trunk/LayoutTests/ChangeLog 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/ChangeLog 2022-02-14 07:30:57 UTC (rev 289727)
@@ -1,3 +1,21 @@
+2022-02-13 Fujii Hironori <[email protected]>
+
+ Delete fast/animation/request-animation-frame-disabled.html after RequestAnimationFrameEnabled setting is deleted
+ https://bugs.webkit.org/show_bug.cgi?id=236569
+
+ Reviewed by Ryosuke Niwa.
+
+ r288797 (Bug 235866) deleted RequestAnimationFrameEnabled setting.
+ We no longer need fast/animation/request-animation-frame-disabled.html
+ which tests disabling the setting.
+
+ * fast/animation/request-animation-frame-disabled-expected.txt: Removed.
+ * fast/animation/request-animation-frame-disabled.html: Removed.
+ * platform/gtk/TestExpectations:
+ * platform/ios/TestExpectations:
+ * platform/mac/TestExpectations:
+ * platform/win/TestExpectations:
+
2022-02-13 Matt Woodrow <[email protected]>
Add support for parsing 'subgrid' in grid-template-columns/row
Deleted: trunk/LayoutTests/fast/animation/request-animation-frame-disabled-expected.txt (289726 => 289727)
--- trunk/LayoutTests/fast/animation/request-animation-frame-disabled-expected.txt 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/fast/animation/request-animation-frame-disabled-expected.txt 2022-02-14 07:30:57 UTC (rev 289727)
@@ -1,10 +0,0 @@
-Tests that requestAnimationFrame is disabled when the setting/preference is false. Note: since the setting is true by default, this usually can't be tested directly in a browser.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS callbackInvoked is false
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
Deleted: trunk/LayoutTests/fast/animation/request-animation-frame-disabled.html (289726 => 289727)
--- trunk/LayoutTests/fast/animation/request-animation-frame-disabled.html 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/fast/animation/request-animation-frame-disabled.html 2022-02-14 07:30:57 UTC (rev 289727)
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-if (window.internals)
- internals.settings.setRequestAnimationFrameEnabled(false);
-</script>
-<script src=""
-</head>
-<body>
-<script>
-description("Tests that requestAnimationFrame is disabled when the setting/preference is false. Note: since the setting is true by default, this usually can't be tested directly in a browser.");
-
-var callbackInvoked = false;
-window.requestAnimationFrame(function() {
- callbackInvoked = true;
-});
-
-if (window.testRunner)
- testRunner.displayAndTrackRepaints();
-
-setTimeout(function() {
- shouldBeFalse("callbackInvoked");
-}, 100);
-
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-setTimeout(function() {
- isSuccessfullyParsed();
- if (window.testRunner)
- testRunner.notifyDone();
-}, 200);
-</script>
-</body>
-</html>
Modified: trunk/LayoutTests/platform/gtk/TestExpectations (289726 => 289727)
--- trunk/LayoutTests/platform/gtk/TestExpectations 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/platform/gtk/TestExpectations 2022-02-14 07:30:57 UTC (rev 289727)
@@ -1448,9 +1448,6 @@
webkit.org/b/84679 css3/zoom-coords.xhtml [ Failure ]
-# Interferes with the rAF tests that are enabled
-webkit.org/b/85689 fast/animation/request-animation-frame-disabled.html [ Skip ]
-
# Failing after r121121 on both GTK and EFL
webkit.org/b/89845 fast/forms/input-set-composition-scroll.html [ Failure ]
Modified: trunk/LayoutTests/platform/ios/TestExpectations (289726 => 289727)
--- trunk/LayoutTests/platform/ios/TestExpectations 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/platform/ios/TestExpectations 2022-02-14 07:30:57 UTC (rev 289727)
@@ -2178,8 +2178,6 @@
webkit.org/b/152442 fast/scrolling/rtl-point-in-iframe.html [ Skip ]
-webkit.org/b/152701 fast/animation/request-animation-frame-disabled.html [ Skip ]
-
webkit.org/b/152282 css3/filters/composited-during-transition-layertree.html [ Failure ]
webkit.org/b/152935 fast/scrolling/scroll-position-on-reload-rtl.html [ Failure ]
Modified: trunk/LayoutTests/platform/mac/TestExpectations (289726 => 289727)
--- trunk/LayoutTests/platform/mac/TestExpectations 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/platform/mac/TestExpectations 2022-02-14 07:30:57 UTC (rev 289727)
@@ -487,9 +487,6 @@
webkit.org/b/85211 ietestcenter/css3/flexbox/flexbox-align-stretch-001.htm [ ImageOnlyFailure ]
webkit.org/b/85212 ietestcenter/css3/flexbox/flexbox-layout-002.htm [ ImageOnlyFailure ]
-# Interferes with the tests that should pass
-webkit.org/b/85689 fast/animation/request-animation-frame-disabled.html [ Skip ]
-
webaudio/codec-tests/vorbis/ [ WontFix ]
# Skip tests in fast/text/shaping
Modified: trunk/LayoutTests/platform/win/TestExpectations (289726 => 289727)
--- trunk/LayoutTests/platform/win/TestExpectations 2022-02-14 06:22:21 UTC (rev 289726)
+++ trunk/LayoutTests/platform/win/TestExpectations 2022-02-14 07:30:57 UTC (rev 289727)
@@ -2696,9 +2696,6 @@
# Fails because MutationObservers are not notified at end-of-task
webkit.org/b/78290 fast/dom/MutationObserver/end-of-task-delivery.html [ Skip ]
-# Interferes with the other requestAnimationFrame tests
-webkit.org/b/85689 fast/animation/request-animation-frame-disabled.html [ Skip ]
-
# Causes crashes in the next test
webkit.org/b/87416 fast/dom/Window/Location/set-location-after-close.html [ Skip ]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes