summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-box/margin-trim/flex-column-orthogonal-item.html
blob: 9f13e2ce71ca8255e1a16558633c45ecbd45cd73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>margin-trim: flex-column-orthogonal-item</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="/css/reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="orthogonal items have correct margins trimmed according to the flexbox's writing mode">
<style>
flexbox {
    display: flex;
    flex-direction: column;
    margin-trim: block;
}
item {
    display: block;
    background-color: green;
    width: 100px;
    height: 50px;
}
.orthogonal {
    writing-mode: vertical-rl;
}
item:first-child {
    margin-inline-start: 10px;
}
item:last-child {
    margin-block-end: 10px;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square.</p>
<flexbox>
<item class="orthogonal"></item>
<item></item>
</flexbox>
</body>
</html>