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

Unified Diff: third_party/WebKit/LayoutTests/animations/usecounter-tests/use-count-SyntheticKeyframesInCompositedCSSAnimation.html

Issue 2971753002: Rename usecounter-tests directory to usecounters (Closed)
Patch Set: Created 3 years, 5 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/usecounter-tests/use-count-SyntheticKeyframesInCompositedCSSAnimation.html
diff --git a/third_party/WebKit/LayoutTests/animations/usecounter-tests/use-count-SyntheticKeyframesInCompositedCSSAnimation.html b/third_party/WebKit/LayoutTests/animations/usecounter-tests/use-count-SyntheticKeyframesInCompositedCSSAnimation.html
deleted file mode 100644
index 5329228ef6fdb5c3285c0fd1346c75871857ad2f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/usecounter-tests/use-count-SyntheticKeyframesInCompositedCSSAnimation.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<style>
-@keyframes noSyntheticKeyframes {
- from { color: black; }
- to { color: green; }
-}
-@keyframes customPropertySyntheticKeyframes {
- to { --x: pants; }
-}
-@keyframes nonCompositedSyntheticKeyframes {
- to { color: green; }
-}
-@keyframes compositedSyntheticKeyframes {
- from {
- opacity: 0;
- }
- to {
- transform: rotate(45deg);
- opacity: 1;
- }
-}
-#target {
- animation-duration: 1s;
-}
-</style>
-<div id="target"></div>
-<script>
-// From UseCounter.h.
-var SyntheticKeyframesInCompositedCSSAnimation = 664;
-
-function forceStyleRecalc() {
- getComputedStyle(target).left;
-}
-
-test(() => {
- forceStyleRecalc();
- assert_false(internals.isUseCounted(document, SyntheticKeyframesInCompositedCSSAnimation), 'No animations started');
-
- target.style.animationName = 'noSyntheticKeyframes';
- forceStyleRecalc();
- assert_false(internals.isUseCounted(document, SyntheticKeyframesInCompositedCSSAnimation), 'noSyntheticKeyframes');
-
- target.style.animationName = 'customPropertySyntheticKeyframes';
- forceStyleRecalc();
- assert_false(internals.isUseCounted(document, SyntheticKeyframesInCompositedCSSAnimation), 'customPropertySyntheticKeyframes');
-
- target.style.animationName = 'nonCompositedSyntheticKeyframes';
- forceStyleRecalc();
- assert_false(internals.isUseCounted(document, SyntheticKeyframesInCompositedCSSAnimation), 'nonCompositedSyntheticKeyframes');
-
- target.style.animationName = 'compositedSyntheticKeyframes';
- forceStyleRecalc();
- assert_true(internals.isUseCounted(document, SyntheticKeyframesInCompositedCSSAnimation), 'compositedSyntheticKeyframes');
-}, 'The SyntheticKeyframesInCompositedCSSAnimation use counter should only be triggered by animations with composited properties with neutral keyframes');
-</script>

Powered by Google App Engine
This is Rietveld 408576698