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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
# Test Templates
This page contains templates for creating tests. The template syntax
is compatible with several popular editors including TextMate, Sublime
Text, and emacs' YASnippet mode.
Templates for filenames are also given. In this case `{}` is used to
delimit text to be replaced and `#` represents a digit.
## Reftests
### HTML test
<!--
Syntax highlighting cannot be enabled for the following template because it
contains invalid CSS.
-->
```
<!DOCTYPE html>
<meta charset="utf-8">
<title>${1:Test title}</title>
<link rel="match" href="${2:URL of match}">
<style>
${3:Test CSS}
</style>
<body>
${4:Test content}
</body>
```
Filename: `{test-topic}-###.html`
### HTML reference
<!--
Syntax highlighting cannot be enabled for the following template because it
contains invalid CSS.
-->
```
<!DOCTYPE html>
<meta charset="utf-8">
<title>${1:Reference title}</title>
<style>
${2:Reference CSS}
</style>
<body>
${3:Reference content}
</body>
```
Filename: `{description}.html` or `{test-topic}-###-ref.html`
### SVG test
``` xml
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml">
<title>${1:Test title}</title>
<metadata>
<h:link rel="help" href="${2:Specification link}"/>
<h:link rel="match" href="${3:URL of match}"/>
</metadata>
${4:Test body}
</svg>
```
Filename: `{test-topic}-###.svg`
### SVG reference
``` xml
<svg xmlns="http://www.w3.org/2000/svg">
<title>${1:Reference title}</title>
${2:Reference content}
</svg>
```
Filename: `{description}.svg` or `{test-topic}-###-ref.svg`
## testharness.js tests
### HTML
``` html
<!DOCTYPE html>
<meta charset="utf-8">
<title>${1:Test title}</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
${2:Test body}
</script>
```
Filename: `{test-topic}-###.html`
### HTML with [testdriver automation](testdriver)
``` html
<!DOCTYPE html>
<meta charset="utf-8">
<title>${1:Test title}</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script>
${2:Test body}
</script>
```
Filename: `{test-topic}-###.html`
### SVG
``` xml
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml">
<title>${1:Test title}</title>
<metadata>
<h:link rel="help" href="${2:Specification link}"/>
</metadata>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<script><![CDATA[
${4:Test body}
]]></script>
</svg>
```
Filename: `{test-topic}-###.svg`
### Manual Test
#### HTML
``` html
<!DOCTYPE html>
<meta charset="utf-8">
<title>${1:Test title}</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
setup({explicit_timeout: true});
${2:Test body}
</script>
```
Filename: `{test-topic}-###-manual.html`
#### SVG
``` xml
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml">
<title>${1:Test title}</title>
<metadata>
<h:link rel="help" href="${2:Specification link}"/>
</metadata>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<script><![CDATA[
setup({explicit_timeout: true});
${4:Test body}
]]></script>
</svg>
```
Filename: `{test-topic}-###-manual.svg`
|