diff options
Diffstat (limited to 'tests/ref/counters_simple_ref.html')
-rw-r--r-- | tests/ref/counters_simple_ref.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/ref/counters_simple_ref.html b/tests/ref/counters_simple_ref.html new file mode 100644 index 00000000000..b1adc96fb26 --- /dev/null +++ b/tests/ref/counters_simple_ref.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<head> +<!-- Tests that `counter` works. --> +<style> +h1, h2, h3 { + font-size: 24px; +} +</style> +</head> +<body> +<h1>1. Foo</h1> + <h2>1.1. Boo</h2> + <h2>1.2. Quux</h2> + <h3>1.2.1. Blah</h3> +<h1>2. Bar</h1> + <h2>2.1. Boo</h2> + <h2>2.2. Quux</h2> +<h1>3. Baz</h1> +</body> +</html> + |