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
/
shapes
/
shape-outside-floats
/
shape-outside-line-spans-box-corners.html
blob
862c22aaa785272ba1734773556ad92d3338ac09
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style>
5
#container {
6
font:
100
px/
1
Ahem, sans-serif;
7
width:
200
px;
8
height:
200
px;
9
color: green;
10
}
11
12
#left-border-box {
13
shape-outside: border-box;
14
float: left;
15
border-radius:
50
px;
16
width:
100
px;
17
height:
100
px;
18
background-color: blue;
19
background-clip: border-box;
20
}
21
</style>
22
</head>
23
<body>
24
<div
id
=
"container"
>
25
<div
id
=
"left-border-box"
></div>
26
X
27
</div>
28
</body>
29
</html>