summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-values/progress-invalid.tentative.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-values/progress-invalid.tentative.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-values/progress-invalid.tentative.html')
-rw-r--r--testing/web-platform/tests/css/css-values/progress-invalid.tentative.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-values/progress-invalid.tentative.html b/testing/web-platform/tests/css/css-values/progress-invalid.tentative.html
new file mode 100644
index 0000000000..e009eef4cc
--- /dev/null
+++ b/testing/web-platform/tests/css/css-values/progress-invalid.tentative.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<link rel="help" href="https://drafts.csswg.org/css-values-5/#progress">
+<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('progress()');
+test_invalid_number('progress( )');
+test_invalid_number('progress(,)');
+test_invalid_number('progress(1 from )');
+test_invalid_number('progress(1)');
+test_invalid_number('progress(50% to 0)');
+test_invalid_number('progress(0 from 1 to)');
+test_invalid_number('progress(from to)');
+test_invalid_number('progress(from 1 to 0)');
+test_invalid_number('progress(from 1 to 0 1)');
+test_invalid_number('progress(from 1 0)');
+test_invalid_number('progress(0 from to 0)');
+test_invalid_number('progress(to to to to to)');
+test_invalid_number('progress(0, from, 10, to 200)');
+test_invalid_number('progress(0, from, 10, to, 200)');
+test_invalid_number('progress(0, from 10, to 200)');
+test_invalid_number('progress(0, 10, 200)');
+
+// General tests
+test_invalid_number('progress(5% from 0 to 8');
+test_invalid_number('progress(5% from 0deg to 8deg');
+test_invalid_number('progress(5 from 0deg to 8deg');
+test_invalid_number('progress(5 from 0% to 8deg');
+test_invalid_number('progress(5 from 0% to sign(10px)');
+test_invalid_number('progress(5% from 0px to 10px');
+test_invalid_length('calc(1px * progress(10deg from 0 to 10))');
+test_invalid_length('calc(1px * progress(10 from 0px to 10))');
+</script>