RetroZilla/layout/html/tests/style/bugs/bug273719.html
2015-10-20 23:03:22 -04:00

27 lines
481 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Generated Content Test Page</title>
<style type="text/css">
#generated div {
color: blue;
}
#generated div:before {
content: "Generated ";
}
#generated div.normal {
color: red;
}
#generated div.normal:before {
content: normal;
}
</style>
</head>
<body>
<div id="generated">
<div>Static</div>
<div class="normal">Static</div>
</div>
</body>
</html>