gecko-dev/testing/web-platform/tests/css/css-tables/parsing/table-layout-computed.html
Eric Willigers d1b49169c5 Bug 1523562 [wpt PR 14953] - [css-tables] Computed values of table properties, a=testonly
Automatic update from web-platform-tests
[css-tables] Computed values of table properties

Computed value of CSS Table keyword properties is the specified keyword.

Computed value of CSS Table border-spacing is two absolute lengths.

https://drafts.csswg.org/css-tables-3/#property-index

--

wpt-commits: 15a2fe67b073b777d58d2002671bf39848215d94
wpt-pr: 14953
2019-02-07 21:50:43 +00:00

19 lines
607 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Table Module: getComputedValue().tableLayout</title>
<link rel="help" href="https://drafts.csswg.org/css-tables/#propdef-table-layout">
<meta name="assert" content="table-layout 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("table-layout", "auto");
test_computed_value("table-layout", "fixed");
</script>
</body>
</html>