Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / 008.html
blob154c4611a00decf6b902481c21cdc508830fc95d
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: 300px;
8 top: 300px;
11 div::after {
12 float: right;
13 width:100px;
14 height:100px;
15 background-color:green;
16 color: green;
17 content: "Invisible";
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>