Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 4 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/container-queries/container-ident-function.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Conditional: The ident() function in @container/container-name</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id=target></div>
<script>
let actual_ident = 'ident("--myident" calc(42 * sign(1em - 1px)))';
let expected_ident = '--myident42';
test_computed_value('container-name', actual_ident, expected_ident);
test_computed_value('container-name', `--c ${actual_ident}`,
`--c ${expected_ident}`);
test_computed_value('container', actual_ident, expected_ident);
test_computed_value('container', `--c ${actual_ident} / size`,
`--c ${expected_ident} / size`);
</script>