testing/web-platform/tests/css/css-text/animations/hyphen-no-interpolation.html
author dadaa <daisuke.akatsuka@birchill.co.jp>
Wed, 09 Jul 2025 04:53:58 +0000 (11 hours ago)
changeset 795836 a5500d271fe3a1fefb4d81d96fc4abd00d9eade7
parent 667127 2be1ae9a2fc92c025ec9b050be04ac0a41a1ad71
permissions -rw-r--r--
Bug 1957280: Limit user's mouse amount for tree component r=places-reviewers,reusable-components-reviewers,masayuki,mstriemer Differential Revision: https://phabricator.services.mozilla.com/D251224
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441">
<link rel=help href="https://drafts.csswg.org/css-text-4/#propdef-hyphenate-character">
<link rel=help href="https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-chars">
<link rel=help href="https://drafts.csswg.org/css-text/#hyphens-property">
<link rel=help href="https://drafts.csswg.org/css-transitions-2/#transition-property-property">
<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: 'hyphenate-character',
  from: 'initial',
  to: '"e"'
});

test_no_interpolation({
  property: 'hyphenate-limit-chars',
  from: 'initial',
  to: '10'
});

test_no_interpolation({
  property: 'hyphens',
  from: 'initial',
  to: 'auto'
});
</script>