repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
css3
/
flexbox
/
nested-orthogonal-flexbox-relayout-expected.html
blob
124ecf843c848a71918559c0b853032184a5e5b1
1
<!DOCTYPE
html
>
2
<style>
3
#column {
4
display: flex;
5
flex-direction: column;
6
border:
5
px solid yellow;
7
width:
200
px;
8
}
9
10
#row {
11
display: flex;
12
flex-direction: row;
13
border:
5
px solid blue;
14
}
15
16
.item {
17
border:
5
px solid green;
18
}
19
</style>
20
<body>
21
<div
id
=
"column"
>
22
<div
id
=
"row"
>
23
<div
class
=
"item"
>
This text should not overflow its box
</div>
24
</div>
25
</div>