blob: f8583e68c00183023b88690c79cfc1d3524ab00d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<title>Tests the anchor-center keyword is parsed and computed as specified</title>
<link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/#anchor-center">
<link rel="author" href="mailto:xiaochengh@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="container">
<div id="target"></div>
</div>
<script>
test_valid_value('align-self', 'anchor-center');
test_valid_value('align-items', 'anchor-center');
test_valid_value('justify-self', 'anchor-center');
test_valid_value('justify-items', 'anchor-center');
test_computed_value('align-self', 'anchor-center');
test_computed_value('align-items', 'anchor-center');
test_computed_value('justify-self', 'anchor-center');
test_computed_value('justify-items', 'anchor-center');
</script>
|