Files
tubestation/layout/reftests/w3c-css/submitted/flexbox/flexbox-table-fixup-001.xhtml
Daniel Holbert dfe5e95b9d Bug 1253354: Update flexbox reftests that deal with table parts in a flex container; now these elements will be blockified & will become flex items. r=mats
Specific changes:
 - flexbox-table-fixup-001a.xhtml previously tested that table parts would get wrapped in an anonymous table, which would form a single flex item. This patch changes it to instead test that each table-part forms its own flex item.
 - flexbox-table-fixup-001b.xhtml previously was a "belt and suspenders" afterthought to its "001a" counterpart. It verified that flex-item properties (like "flex") had no effect on table parts in a flex container. This patch removes this test (since it's no longer valid) and renames the "001a" test to simply "001" as a result.
 - flexbox-with-pseudo-elements-003.html previously tested that ::before/::after pseudo-elements with table-part display values would have their flex-item-related properties ignored (because they'd be wrapped in an anonymous table). This patch flips that expectation, because now these pseudo-elements will directly become flex items and these properties should be honored.
2016-03-03 17:15:22 -08:00

66 lines
2.0 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!--
Testcase with table parts inside of a flex container, which should *not*
trigger table-fixup. We use justify-content:space-between to stick packing
space between flex items, so that we can verify that e.g. a contiguous
run of <td>s will each be blockified & form its own flex item (instead of
being aggregated into a single table & single flex item).
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Test: Testing that table cells in a flex container get blockified and each form their own flex item</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items"/>
<link rel="match" href="flexbox-table-fixup-001-ref.xhtml"/>
<style>
div.flexbox {
border: 1px dashed blue;
width: 200px;
display: flex;
justify-content: space-around;
}
td {
/* Remove any default padding for td elements, so we can compare them
easily against blocks in the reference case. */
padding: 0px;
}
.a {
background: lightgreen;
width: 48px;
}
.b {
background: yellow;
width: 48px;
}
.c {
background: pink;
width: 48px;
}
</style>
</head>
<body>
<!-- The adjacent table-parts in each example below should *not* be
grouped into the same flex item. -->
<!-- 2 adjacent table cells -->
<div class="flexbox"
><td class="a">cell1</td><td class="b">cell2</td></div>
<!-- Table cell followed by tbody -->
<div class="flexbox"
><td class="a">cell1</td><tbody class="b">t</tbody></div>
<!-- Empty table cell (ends up occupying 2px of width), followed by
nonempty table cell.-->
<div class="flexbox"
><td></td><td class="b">cell1</td></div>
</body>
</html>