-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathcontainer-name-computed.html
More file actions
23 lines (22 loc) · 1.01 KB
/
container-name-computed.html
File metadata and controls
23 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<meta charset="utf-8">
<title>CSS Conditional Test: Computed values of container-name</title>
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-conditional-5/#container-name">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<script src="support/cq-testcommon.js"></script>
<div id="target"></div>
<script>
setup(() => assert_implements_size_container_queries());
test_computed_value('container-name', 'initial', 'none');
test_computed_value('container-name', 'unset', 'none');
test_computed_value('container-name', 'foo');
test_computed_value('container-name', 'FoO');
test_computed_value('container-name', 'foo bar');
test_computed_value('container-name', 'bar foo');
test_computed_value('container-name', 'foo foo bar');
test_computed_value('container-name', 'foo bar foo');
test_computed_value('container-name', 'bar foo foo');
test_computed_value('container-name', '\\!escaped');
</script>