-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathat-container-scrollable-serialization.html
32 lines (30 loc) · 1.46 KB
/
at-container-scrollable-serialization.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<title>CSS Container Queries: scroll-state(scrollable) conditionText serialization</title>
<link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-queries">
<link rel="help" href="https://drafts.csswg.org/cssom/#serialize-a-css-rule">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/css-conditional/container-queries/support/cq-testcommon.js"></script>
<style id="testSheet">
@container scroll-state( scrollable:left) { }
@container scroll-STate(scrollable: ) { }
@container scroll-STate(scrollable) { }
@container scroll-state( ( scrollable: LEFT) OR ( SCROLLABLE: BOTTOM ) ) { }
@container scroll-state (scrollable: right) { }
</style>
<script>
setup(() => {
assert_implements_scroll_state_container_queries();
assert_equals(testSheet.sheet.cssRules.length, 5);
});
const tests = [
["scroll-state(scrollable: left)", "Normalize spaces"],
["scroll-STate(scrollable: )", "No value - invalid, serializes as <general-enclosed>"],
["scroll-state(scrollable)", "Boolean context"],
["scroll-state((scrollable: left) or (scrollable: bottom))", "Logical with 'or'"],
["scroll-state (scrollable: right)", "Not a scroll-state function with space before '('"]
].map((e, i) => [testSheet.sheet.cssRules[i], ...e]);
tests.forEach((t) => {
test(() => assert_equals(t[0].conditionText, t[1]), t[2]);
});
</script>