summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-generated-content/007.html
blob: b52206ab04900b1040e38cf6290c4e3a9277e38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>