Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 11 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-inline/parsing/alignment-baseline-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Inline Layout: getComputedStyle().alignmentBaseline</title>
<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>