Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / 013.html
blobb05c92f3bbc394414bca8a887e4768a37c2d9e08
1 <html>
2 <head>
3 <title>CSS content test</title>
4 <style>
5 H1:before {
6 content: attr(myAttr) " Chapter: "
8 H2:before {
9 content: attr(myAttr) "Chapter: "
11 H3:before {
12 content: "Chapter " attr(myAttr) ": "
14 H4:before {
15 content: "Chapter: " attr(myAttr)
17 </style>
18 </head>
19 <body>
20 <h1 myAttr="First">TEST 1</h1>
21 Should read: "First Chapter: TEST 1"
22 <h2>TEST 2</h2>
23 Should read: "Chapter: TEST 2"
24 <h3 myAttr="One">TEST 3</h3>
25 Should read: "Chapter One: TEST 3"
26 <h4>TEST 4</h4>
27 Should read: "Chapter: TEST 4"
28 </body>