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-overflow-hidden-expected.html
blob
e9b08e85ffe64522cd94364c0fece612ea22affd
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<title>
Multicol edge clipping
</title>
5
<style>
6
.mc {
7
columns:
3
;
8
column-gap:
15
px;
9
column-fill: auto;
10
-webkit-columns:
3
;
11
-webkit-column-gap:
15
px;
12
width:
600
px;
13
height:
100
px;
14
margin:
100
px;
15
}
16
</style>
17
</head>
18
<body>
19
<p>
There should be a
100
x100 blue square below.
</p>
20
<div
class
=
"mc"
>
21
<div
style
=
"width:100px; height:100px; background:blue;"
></div>
22
</div>
23
</body>
24
</html>