Part 3 is going to duplicate all the fragmentation reftests, and add
"writing-mode: vertical-lr" to them. If any of the physical property is
missed the conversion, we'll know when running the them.
This patch is generated by running the following script under
`layout/reftests/flexbox/pagination`.
```
#!/usr/bin/env bash
function rename() {
rg -l "$1" flexbox-single-* flexbox-multi* | xargs sed -i "s/$1/$2/g"
}
rename "margin-top" "margin-block-start"
rename "margin-bottom" "margin-block-end"
rename "border-width: 10px 0" "border-block-width: 10px"
rename "border: solid white" "border: 0 solid white"
rename "border-width: 15px 0" "border-block-width: 15px"
rename "padding: 5px 0" "padding-block: 5px"
rename "padding: 15px 0" "padding-block: 15px"
rename "top:" "inset-block-start:"
rename "left:" "inset-inline-start:"
# Rename properties containing 'width' or 'Height' to something else temporarily.
rename "border-width" "border-XXX"
rename "border-block-width" "border-block-XXX"
rename "column-width" "column-XXX"
rename "offsetHeight" "offsetYYY"
rename "width" "inline-size"
rename "height" "block-size"
rename "Height" "Block-size"
# Switch them back.
rename "XXX" "width"
rename "YYY" "Height"
```
Differential Revision: https://phabricator.services.mozilla.com/D96740
52 lines
1.6 KiB
HTML
52 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Flexbox Test: Fragmentation of block-size:auto single-line row flex container in a zero block-size multicol</title>
|
|
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
|
|
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
|
|
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
|
|
<link rel="match" href="flexbox-single-row-4-ref.html">
|
|
<meta name="assert" content="This test verifies fragmentation of flex containers can make progress in a zero block-size multicol.">
|
|
|
|
<style>
|
|
.multicol {
|
|
column-count: 2;
|
|
block-size: 0;
|
|
border: 1px solid black;
|
|
margin-block-end: 30px; /* Just to separate each sub-testcase visually. */
|
|
}
|
|
|
|
.flexContainer {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
flex-direction: row;
|
|
padding: 1px;
|
|
}
|
|
|
|
.boxDecorationBreak {
|
|
padding: 5px;
|
|
box-decoration-break: clone;
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
<!-- Basic one with padding on the flex container.-->
|
|
<div class="multicol">
|
|
<div class="flexContainer">
|
|
<div>abc</div><div>def</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Larger padding and box-decoration-break:clone on the flex container.-->
|
|
<div class="multicol">
|
|
<div class="flexContainer boxDecorationBreak">
|
|
<div>abc</div><div>def</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|