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-anchor-position/position-try-ident-function.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Anchor Positioning: The ident() function in @position-try/position-try</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('position-try-fallbacks', actual_ident, expected_ident);
test_computed_value('position-try-fallbacks', `flip-block, ${actual_ident}`,
`flip-block, ${expected_ident}`);
test_computed_value('position-try', actual_ident, expected_ident);
test_computed_value('position-try', `most-width ${actual_ident}`,
`most-width ${expected_ident}`);
</script>