RetroZilla/layout/html/tests/block/bugs/8905.html

29 lines
845 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
p:first-letter { color: red; font-weight: bold; }
.two:before { content: "Before pseudo-element! "; border: thin solid green; }
.three:after { content: "After pseudo-element!"; }
</style>
</head>
<body>
<p>This is a normal paragraph. The styles herein are:</p>
<pre>
p:first-letter { color: red; font-weight: bold; }
.two:before { content: "Before pseudo-element! "; border: thin solid green; }
</pre>
<p class="two">This has class="two". The first letter style should apply
to the beginning of the generated content, so this paragraph should have
started with "<span style="color:red; font-weight: bold">B</span>efore
pseudo-element!". </p>
<p class="three"></p>
</body>
</html>