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
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
css-generated-content
/
008.html
blob
154c4611a00decf6b902481c21cdc508830fc95d
1
<html>
2
<head>
3
<style>
4
p::before {
5
content:
"Some text"
" that should be at an (x,y) of (300,300)"
;
6
position: absolute;
7
left:
300
px;
8
top:
300
px;
9
}
10
11
div::after {
12
float: right;
13
width:
100
px;
14
height:
100
px;
15
background-color:green;
16
color: green;
17
content:
"Invisible"
;
18
}
19
</style>
20
</head>
21
<body>
22
<p></p>
23
<div>
In this paragraph, there should be a right floating green ::after block. It should be ok to do this.
24
</div>
25