1
0
Fork 0
firefox/testing/web-platform/tests/css/css-values/ident-function-parsing.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
1.4 KiB
HTML

<!DOCTYPE html>
<title>CSS Values: The ident() Function (parsing)</title>
<link rel="help" href="https://drafts.csswg.org/css-values-5/#ident">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
// Any property that accepts <custom-ident> will do.
let prop = 'view-transition-name';
test_invalid_value(prop, 'ident()');
test_invalid_value(prop, 'ident( )');
test_invalid_value(prop, 'ident(rgb(1, 2, 3))');
test_invalid_value(prop, 'ident(5px)');
test_valid_value(prop, 'ident(myident)');
test_valid_value(prop, 'ident( myident)', 'ident(myident)');
test_valid_value(prop, 'ident(myident )', 'ident(myident)');
test_valid_value(prop, 'ident("myident")');
test_valid_value(prop, 'ident("myident" 3)');
test_valid_value(prop, 'ident(3 "myident")');
test_valid_value(prop, 'ident("my" "ident")');
test_valid_value(prop, 'ident(my "ident")');
test_valid_value(prop, 'ident("my" ident)');
test_valid_value(prop, 'ident(my ident)');
test_valid_value(prop, 'ident(-- myident)');
test_valid_value(prop, 'ident(my 3 3 3 3 ident)')
// Check for support in specific properties (WIP):
let ident = 'ident("myident" 42)';
// https://drafts.csswg.org/css-view-transitions/#view-transition-name-prop
test_valid_value('view-transition-name', ident);
</script>