- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathusing-strings-001.html
35 lines (30 loc) · 885 Bytes
/
using-strings-001.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<title>CSS Test: using 'first' property of named strings</title>
<linkrel="author" title="Dave Cramer" href="mailto:dauwhe@gmail.com">
<linkrel="help" href="http://www.w3.org/TR/css-gcpm-3/#string-first">
<metaname="flags" content="paged">
<metaname="assert" content="Test checks that the default value of the string property is first, so that the first instance of a named string on the page is used.">
<style>
@page {
@top-center {
content:string(section);
}
}
h2 {
string-set: section content();
}
</style>
</head>
<body>
<p>Test passes if “Section One” is in the running head at the top of the page.</p>
<h2id="s1">Section One</h2>
<h2id="s2">Section Two</h2>
<h2id="s3">Section Three</h2>
<h2id="s4">Section Four</h2>
<h2id="s5">Section Five</h2>
<h2id="s6">Section Six</h2>
</body>
</html>