testing/web-platform/tests/css/css-backgrounds/animations/discrete-no-interpolation.html
author Duncan McIntosh <dmcintosh@mozilla.com>
Wed, 09 Jul 2025 19:42:02 +0000 (3 hours ago)
changeset 795924 9ccc6a2267cbf69c621fec973bd28573c2a45a1f
parent 660087 35b4cb88746257c06b68e537fef5bd99357c5467
permissions -rw-r--r--
Bug 1966586 - Reuse other browser windows when opening _blank links in Taskbar Tabs windows. r=nrishel This doesn't affect other tab additions, nor does it stop the tab bar from appearing altogether. The idea is that _if_ another tab is somehow made, the user should see it; but we should not create new tabs if we can avoid it. This also adds tests for opening URIs in popups and taskbar tabs to make it less likely that this breaks in future. Differential Revision: https://phabricator.services.mozilla.com/D253726
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441">
<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: 'background-attachment',
  from: 'initial',
  to: 'fixed'
});

test_no_interpolation({
  property: 'background-blend-mode',
  from: 'initial',
  to: 'overlay'
});

test_no_interpolation({
  property: 'background-clip',
  from: 'initial',
  to: 'content-box'
});

test_no_interpolation({
  property: 'background-origin',
  from: 'initial',
  to: 'border-box'
});

test_no_interpolation({
  property: 'background-repeat',
  from: 'initial',
  to: 'round'
});

test_no_interpolation({
  property: 'border-image-repeat',
  from: 'initial',
  to: 'round'
});
</script>