mirror of
https://github.com/servo/servo.git
synced 2025-08-14 18:05:36 +01:00
Update web-platform-tests to revision b'8a99353217938b6f1da31a9a108da3d501cee58b'
This commit is contained in:
parent
62ec0f1ec7
commit
92be0baf34
211 changed files with 5373 additions and 2272 deletions
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>margin-trim: flex-column-inline-multiline</title>
|
||||
<link rel="author" href="mailto:sammy.gill@apple.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-flex">
|
||||
<link rel="match" href="flex-column-inline-multiline-ref.html">
|
||||
<meta name="assert" content="inline-start should be trimmed for all items on the first flex line and inline-end should be trimmed for all items on the last flex line">
|
||||
<style>
|
||||
flexbox {
|
||||
display: flex;
|
||||
width: min-content;
|
||||
height: 100px;
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
margin-trim: inline;
|
||||
}
|
||||
item {
|
||||
display: block;
|
||||
background-color: green;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-inline-start: 10px;
|
||||
margin-inline-end: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<flexbox>
|
||||
<item></item>
|
||||
<item></item>
|
||||
<item></item>
|
||||
<item></item>
|
||||
</flexbox>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue