Backed out 2 changesets (bug 1917602) on request by emilio. CLOSED TREE

Backed out changeset d5d237db3e73 (bug 1917602)
Backed out changeset f3cc65f111ef (bug 1917602)
This commit is contained in:
Cristina Horotan 2024-09-26 13:48:33 +03:00
parent 437437b528
commit 0e05920f93
3 changed files with 6 additions and 18 deletions

View File

@ -371,6 +371,12 @@ if (IsCSSPropertyPrefEnabled("layout.css.contain-intrinsic-size.enabled")) {
supported_properties["content-visibility"] = [test_content_visibility_transition]; supported_properties["content-visibility"] = [test_content_visibility_transition];
if (IsCSSPropertyPrefEnabled("layout.css.zoom.enabled")) {
Object.assign(supported_properties, {
"zoom": [ test_number_transition, test_percent_transition ],
});
}
// For properties which are well-tested by web-platform-tests, we don't need to // For properties which are well-tested by web-platform-tests, we don't need to
// test animations/transitions again on them. // test animations/transitions again on them.
var skipped_transitionable_properties = [ var skipped_transitionable_properties = [

View File

@ -631,7 +631,6 @@ ${helpers.predefined_type(
"zoom", "zoom",
"Zoom", "Zoom",
"computed::box_::Zoom::ONE", "computed::box_::Zoom::ONE",
animation_type="discrete",
engines="gecko", engines="gecko",
spec="Non-standard (https://github.com/atanassov/css-zoom/ is the closest)", spec="Non-standard (https://github.com/atanassov/css-zoom/ is the closest)",
gecko_pref="layout.css.zoom.enabled", gecko_pref="layout.css.zoom.enabled",

View File

@ -1,17 +0,0 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Zoom: animation and transition tests</title>
<link rel="help" href="https://drafts.csswg.org/css-transform-2/#propdef-zoom">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>
<body>
<script>
test_no_interpolation({
property: 'zoom',
from: '1',
to: '2',
});
</script>