fune/testing/web-platform/tests/css/css-values/container-progress-invalid.tentative.html
Blink WPT Bot ff30dffe9c Bug 1887631 [wpt PR 45308] - Implement container-progress() function, a=testonly
Automatic update from web-platform-tests
Implement container-progress() function (#45308)

As introduced in https://drafts.csswg.org/css-values-5/#container-progress-func
The container-progress() functional notation returns a <number> value
representing current value of the size-feature of some container, that
can be either named or unnamed, as a progress value between two explicit
calc values.

Note: for now we only support width and height features.

Note: now it's an editor's draft with a very strong chances to be accepted.
Bug: 40944203
Change-Id: I4664ad8d01174bfdc9621ca304caecc9db37c9ca
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5391308
Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org>
Commit-Queue: Daniil Sakhapov <sakhapov@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1279994}

Co-authored-by: Daniil Sakhapov <sakhapov@chromium.org>
--

wpt-commits: 7aab4fec3dee833ed4bdca83e5fec037a6066055
wpt-pr: 45308
2024-04-10 09:25:08 +00:00

55 lines
2.8 KiB
HTML

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-values-5/#container-progress-func">
<link rel="author" title="sakhapov@chromuim.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../support/parsing-testcommon.js"></script>
<script>
function test_invalid_number(value) {
test_invalid_value('opacity', value);
}
function test_invalid_length(value) {
// 'letter-spacing' accepts <length> only, not <percentage> or any mixes.
test_invalid_value('letter-spacing', value);
}
// Syntax checking
test_invalid_number('container-progress()');
test_invalid_number('container-progress( )');
test_invalid_number('container-progress(,)');
test_invalid_number('container-progress(1 from )');
test_invalid_number('container-progress(1)');
test_invalid_number('container-progress(50% to 0)');
test_invalid_number('container-progress(0 from 1 to)');
test_invalid_number('container-progress(from to)');
test_invalid_number('container-progress(from 1 to 0)');
test_invalid_number('container-progress(3 of 2 from 1 to 0)');
test_invalid_number('container-progress(width of 2 from 1 to 0)');
test_invalid_number('container-progress(from 1 to 0 1)');
test_invalid_number('container-progress(from 1 0)');
test_invalid_number('container-progress(0 from to 0)');
test_invalid_number('container-progress(to to to to to)');
test_invalid_number('container-progress(0, from, 10, to 200)');
test_invalid_number('container-progress(0, from, 10, to, 200)');
test_invalid_number('container-progress(0, from 10, to 200)');
test_invalid_number('container-progress(0, 10, 200)');
// General tests
test_invalid_number('container-progress(height from 0 to 8');
test_invalid_number('container-progress(height container from 0 to 8');
test_invalid_number('container-progress(height of from 0 to 8');
test_invalid_number('container-progress(depth from 0px to 8px');
test_invalid_number('container-progress(width of 10 from 0px to 8px');
test_invalid_number('container-progress(height of 10 from 0px to 8px');
test_invalid_number('container-progress(height of name from 0deg to 8deg');
test_invalid_number('container-progress(height of name from 0 to 8px');
test_invalid_number('container-progress(10px from 0px to 8px');
test_invalid_number('container-progress(depth of name from 0px to 8px');
test_invalid_number('container-progress(width from 0deg to 8deg');
test_invalid_number('container-progress(5 from 0deg to 8deg');
test_invalid_number('container-progress(5 from 0% to 8deg');
test_invalid_number('container-progress(height from 0% to sign(10px)');
test_invalid_number('container-progress(5% from 0px to 10px');
test_invalid_length('calc(1px * container-progress(10deg from 0 to 10))');
test_invalid_length('calc(1px * container-progress(10 from 0px to 10))');
</script>