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
/
block
/
float
/
023.html
blob
d1ee91b213d663fa6150c26ca4089a07395d6f8d
1
<html>
2
<head>
3
<style>
4
ul {
5
padding:
0
px;
6
margin:
0
px;
7
}
8
9
li {
10
margin:
0
px;
11
padding:
0
px;
12
float: left;
13
width:
100
px;
14
height:
100
px;
15
display: block;
16
}
17
18
li.li1 {
19
position: relative;
20
left:
100
px;
21
background-color:green;
22
}
23
24
li.li2 {
25
background-color:red;
26
}
27
</style>
28
</head>
29
<body>
30
<p>
You should see a single
100
x100 green block below. If you see any red, the test has failed.
</p>
31
32
<ul>
33
<li
class
=
"li1"
></li>
34
<li
class
=
"li2"
></li>
35
</ul>
36
</html>
37