forked from mirrors/gecko-dev
Automatic update from web-platform-tests [css-flexbox]: Migrate flexbox-with-multi-column-property.html to WPT This CL moves flexbox-with-multi-column-property.html from css3/flexbox/ to external/wpt/css/css-flexbox/. It also adds links and references to the related spec, and expected behavior. Last, it replaces uses of -webkit-column-* by their respective column-* counterparts. Relevant spec change: https://github.com/w3c/csswg-drafts/issues/1364 ([css-multicol-1][css-flexbox-1][css-grid-1] Clarify that column-* properties only apply to block containers). BUG=1063749 R=dgrogan@chromium.org Change-Id: Icd31c1974af431bd8cd6de94970e4e29137a669e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2127294 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by: Stephen McGruer <smcgruer@chromium.org> Reviewed-by: David Grogan <dgrogan@chromium.org> Cr-Commit-Position: refs/heads/master@{#754649} -- wpt-commits: 79a262ea111267cc1cc5c436f872ae5e8daaeec1 wpt-pr: 22534
15 lines
311 B
HTML
15 lines
311 B
HTML
<!DOCTYPE html>
|
|
<link href="resources/flexbox.css" rel="stylesheet">
|
|
<style>
|
|
.flexbox, .inline-flexbox {
|
|
width: 20em;
|
|
font-kerning: none;
|
|
}
|
|
</style>
|
|
<div class="flexbox">
|
|
AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
|
|
</div>
|
|
|
|
<div class="inline-flexbox">
|
|
AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
|
|
</div>
|