Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/container-queries/at-container-anchored-parsing-any.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Conditional Test: @container anchored query parsing - 'any' position-area</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/css-conditional/container-queries/support/cq-testcommon.js"></script>
<div style="container-name:name;container-type:anchored">
<main id="cq-main"></main>
</div>
<script>
test_cq_condition_known('anchored(fallback: any)');
test_cq_condition_known('anchored(fallback: any any)');
test_cq_condition_known('anchored(fallback: any top)');
test_cq_condition_known('anchored(fallback: center any)');
test_cq_condition_known('anchored(fallback: any self-start)');
test_cq_condition_known('anchored(fallback: inline-end any)');
test_cq_condition_unknown('anchored(fallback: any none)');
</script>