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-floats-not-a-layer.html
blob
28dfc891f0d88912b390dc1efca3551cc311aff1
1
<!DOCTYPE
html
>
2
<style>
3
.container {
4
font:
10
px/
1
Ahem;
5
color: green;
6
}
7
.left {
8
float: left;
9
height:
10
px;
10
width:
50
px;
11
background-color: red;
12
shape-outside: inset(
0 100
%
0 0
);
13
}
14
</style>
15
<body>
16
You should see a green rectangle. You shouldn't see any red.
17
<div
class
=
"container"
>
18
<div
class
=
"left"
></div>
19
XXXXX
20
</div>
21
</body>