summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-inline/parsing/alignment-baseline-computed.html
blob: 83137f05645d72d6cb188ec6182e300f34dc1294 (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
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Inline Layout: getComputedStyle().alignmentBaseline</title>
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#alignment-baseline-property">
<link rel="help" href="https://www.w3.org/TR/SVG11/text.html#AlignmentBaselineProperty">
<meta name="assert" content="alignment-baseline computed value is as specified.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value("alignment-baseline", "baseline");
test_computed_value("alignment-baseline", "text-bottom");
test_computed_value("alignment-baseline", "alphabetic");
test_computed_value("alignment-baseline", "ideographic");
test_computed_value("alignment-baseline", "middle");
test_computed_value("alignment-baseline", "central");
test_computed_value("alignment-baseline", "mathematical");
test_computed_value("alignment-baseline", "text-top");
test_computed_value("alignment-baseline", "bottom");
test_computed_value("alignment-baseline", "center");
test_computed_value("alignment-baseline", "top");
</script>
</body>
</html>