Bug 1824054 [wpt PR 39153] - CSSTransitionDiscrete: Add tests part 1, a=testonly

Automatic update from web-platform-tests
CSSTransitionDiscrete: Add tests part 1

Bug: 1399631, 1413556
Change-Id: I012950e8cdcd0b3e5d881002f2dcab5e828a4486
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4363162
Commit-Queue: Joey Arhar <jarhar@chromium.org>
Reviewed-by: Mason Freed <masonf@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1122583}

--

wpt-commits: b71817b9298930c5ff1aed90206ab77853e346bf
wpt-pr: 39153
This commit is contained in:
Joey Arhar 2023-03-30 11:10:54 +00:00 коммит произвёл moz-wptsync-bot
Родитель 25b95a2f91
Коммит 6dec6664f1
7 изменённых файлов: 140 добавлений и 2 удалений

Просмотреть файл

@ -0,0 +1,33 @@
<!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: 'border-left-style',
from: 'initial',
to: 'dotted'
});
test_no_interpolation({
property: 'border-right-style',
from: 'initial',
to: 'dotted'
});
test_no_interpolation({
property: 'border-top-style',
from: 'initial',
to: 'dotted'
});
test_no_interpolation({
property: 'border-bottom-style',
from: 'initial',
to: 'dotted'
});
</script>

Просмотреть файл

@ -0,0 +1,15 @@
<!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: 'border-collapse',
from: 'initial',
to: 'collapse'
});
</script>

Просмотреть файл

@ -0,0 +1,45 @@
<!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>

Просмотреть файл

@ -0,0 +1,15 @@
<!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: 'alignment-baseline',
from: 'initial',
to: 'central'
});
</script>

Просмотреть файл

@ -8,8 +8,8 @@
<body>
<script>
test_no_interpolation({
property: 'background-repeat',
property: 'baseline-source',
from: 'initial',
to: 'round'
to: 'last'
});
</script>

Просмотреть файл

@ -0,0 +1,15 @@
<!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: 'backface-visibility',
from: 'initial',
to: 'hidden'
});
</script>

Просмотреть файл

@ -0,0 +1,15 @@
<!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: 'appearance',
from: 'initial',
to: 'none'
});
</script>