Update web-platform-tests to revision 5c34fc630374b9eb0559139a486ff1a2e4247c4f

This commit is contained in:
WPT Sync Bot 2020-05-28 08:18:22 +00:00
parent b0f0bd8282
commit 1b463fce85
222 changed files with 5045 additions and 641 deletions

View file

@ -4,8 +4,9 @@
<title>CSS Test Reference: flex container multiline wrapping-reverse in column-reverse direction</title>
<link rel="author" title="tmtysk" href="mailto:tmtysk@gmail.com">
<link rel="reviewer" title="Tab Atkins" href="mailto:jackalmage@gmail.com">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
* { margin:0; padding:0; font-size:100%; line-height:1; }
* { margin:0; padding:0; font-size:100%; line-height:1; font-family: Ahem; }
.test {
width: 300px;
@ -21,26 +22,32 @@
#row1-col1 {
height: 90px;
color: orange;
}
#row1-col2 {
height: 90px;
color: green;
}
#row1-col3 {
height: 90px;
color: blue;
}
#row2-col1 {
height: 140px;
color: yellow;
}
#row2-col2 {
height: 140px;
color: magenta;
}
#row3-col1 {
height: 290px;
color: cyan;
}
.clear {

View file

@ -7,9 +7,10 @@
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-direction-property">
<link rel="match" href="multi-line-wrap-reverse-column-reverse-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<meta name="assert" content="This test check that a flex container reverse-wraps blocks multiline in column-reverse direction.">
<style>
* { margin:0; padding:0; font-size:100%; line-height:1; }
* { margin:0; padding:0; font-size:100%; line-height:1; font-family: Ahem; }
#test {
display: flex;
@ -26,26 +27,32 @@
#col1-row1 {
height: 90px;
color: orange;
}
#col1-row2 {
height: 90px;
color: green;
}
#col1-row3 {
height: 90px;
color: blue;
}
#col2-row1 {
height: 140px;
color: yellow;
}
#col2-row2 {
height: 140px;
color: magenta;
}
#col3-row1 {
height: 290px;
color: cyan;
}
</style>