haikuwebkit/LayoutTests/fast/css-generated-content/007.html

22 lines
274 B
HTML

<html>
<head>
<style>
div {
text-transform: uppercase;
}
div:first-letter {
text-transform: uppercase;
}
p::before {
content: "This text should be uppercase.";
text-transform: uppercase;
}
</style>
</head>
<body>
<div>This text should be uppercase.</div>
<p></p>