mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
Update web-platform-tests to revision ac16628eb7eb601957382053011363d2bcf8ce44
This commit is contained in:
parent
ea7e753cea
commit
7e7c8873e4
4408 changed files with 664787 additions and 857286 deletions
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Flexbox Test: gap - horizontal with vertical RL writing mode</title>
|
||||
<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com">
|
||||
<style>
|
||||
body {
|
||||
writing-mode: vertical-rl;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: green;
|
||||
block-size: 100px;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
section > div{
|
||||
background-color: grey;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
section > div:not(:first-child) {
|
||||
margin-inline-start: 20px;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<p>Test passes if there is <strong>a green horizontal line between boxes</strong>.</p>
|
||||
<section>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
</section>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue