mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
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
19 lines
607 B
HTML
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>
|