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
/
multicol
/
newmulticol
/
clipping-expected.html
blob
4f37c67de1d05ad8d14e0a9afc8c99a0d08995fb
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<title>
Column clipping
</title>
5
<style>
6
body {
7
width:
450
px;
8
color: black;
9
background: white;
10
}
11
.mc {
12
columns:
3
;
13
column-gap:
15
px;
14
column-fill: auto;
15
-webkit-columns:
3
;
16
-webkit-column-gap:
15
px;
17
height:
100
px;
18
box-sizing:border-box;
19
border:
10
px solid green;
20
background:white;
21
}
22
</style>
23
</head>
24
<body>
25
<p>
There should be a rectangle with a solid
10
px thick green border below, and no red.
</p>
26
<div
class
=
"mc"
></div>
27
</body>
28
</html>