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
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
deprecated-flexbox
/
026.html
blob
bac8f6e044da5a07fe36fce346b49a3c9c5f26e1
1
<style
type
=
"text/css"
>
2
#file
{
3
display
: -
moz-box
;
4
display
: -
webkit-box
;
5
display
:
box
;
6
background-color
:
blue
;
7
width
:
300px
;
8
height
:
100px
;
9
}
10
11
#but
{
12
-moz-box-flex
:
2
;
13
-webkit-box-flex
:
2
;
14
box-flex
:
2
;
15
height
:
100px
;
16
background-color
:
red
;
17
max-width
:
400px
;
18
min-width
:
400px
;
19
}
20
21
#name
{
22
-moz-box-flex
:
3
;
23
-webkit-box-flex
:
3
;
24
box-flex
:
3
;
25
height
:
100px
;
26
background-color
:
green
;
27
}
28
</style>
29
<div
id
=
"file"
><div
id
=
"but"
>
Some text
</div><div
id
=
"name"
>
Some more text
</div></div>