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
/
fast
/
deprecated-flexbox
/
021.html
blob
4f7f49ef748b77491d1027521b58cc31237ac8f0
1
<html>
2
<head>
3
<style>
4
div {
5
display: -moz-box;
6
display: -webkit-box;
7
display: box;
8
background-color: red;
9
width:
100
px;
10
height:
100
px;
11
}
12
13
.first {
14
visibility: collapse;
15
-moz-box-flex:
1
;
16
-webkit-box-flex:
1
;
17
box-flex:
1
;
18
width:
50
px;
19
height:
100
px;
20
}
21
22
.second {
23
background-color: green;
24
-moz-box-flex:
1
;
25
-webkit-box-flex:
1
;
26
box-flex:
1
;
27
width:
50
px;
28
height:
100
px;
29
}
30
31
</style>
32
</head>
33
<body>
34
<p>
You should see a
100
x100 green square below. If you see any red, the test has failed. This test is checking
35
for visibility:collapse support.
</p>
36
<div>
37
<div
class
=
"first"
></div>
38
<div
class
=
"second"
></div>
39
</div>
40
</body>
41
</html>