3 Copyright (c) 2008 Geoffrey Sneddon
5 Permission is hereby granted, free of charge, to any person obtaining a copy
6 of this software and associated documentation files (the "Software"), to deal
7 in the Software without restriction, including without limitation the rights
8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 copies of the Software, and to permit persons to whom the Software is
10 furnished to do so, subject to the following conditions:
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 <title>html5lib test runner</title>
24 <script src=../resources/dump-as-markup.js></script>
33 <p>Script did not run</p>
39 'resources/tests1.dat',
40 'resources/tests2.dat',
41 'resources/tests3.dat',
42 'resources/tests4.dat',
43 'resources/tests5.dat',
44 'resources/tests6.dat',
45 'resources/tests7.dat',
46 'resources/tests8.dat',
47 'resources/tests9.dat',
48 'resources/tests10.dat',
49 'resources/tests11.dat',
50 'resources/tests12.dat',
51 'resources/tests14.dat',
52 'resources/tests15.dat',
53 'resources/tests16.dat',
54 'resources/tests17.dat',
55 'resources/tests18.dat',
56 'resources/tests19.dat',
57 'resources/tests20.dat',
58 'resources/tests21.dat',
59 'resources/tests_innerHTML_1.dat',
60 'resources/webkit01.dat',
61 'resources/webkit02.dat',
62 'resources/doctype01.dat',
63 'resources/scriptdata01.dat',
64 'resources/html5test-com.dat',
65 'resources/entities01.dat',
66 'resources/entities02.dat',
67 'resources/comments01.dat',
68 'resources/adoption01.dat',
69 'resources/adoption02.dat',
70 'resources/inbody01.dat',
71 'resources/isindex.dat',
72 'resources/tables01.dat',
73 'resources/tricky01.dat',
74 'resources/scripted/adoption01.dat',
75 'resources/scripted/webkit01.dat'
78 iframe = document.getElementsByTagName("iframe")[0],
79 stat = document.getElementsByTagName("p")[0].firstChild,
85 iframe.contentWindow.document.open()
86 iframe.contentWindow.document.write("Test");
87 iframe.contentWindow.document.close();
88 var write = iframe.contentWindow.document.lastChild.lastChild.lastChild !== null;
89 var ignoreTitle = iframe.contentWindow.document.getElementsByTagName("title")[0] !== undefined;
91 window.onload = function()
93 stat.data = "Running";
99 var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
100 if (file = test_files.shift())
102 stat.data = "Retriving " + file;
106 xhr.open("GET", file);
107 xhr.onreadystatechange = function()
109 if (xhr.readyState === 4)
111 tests = xhr.responseText.split(/(?:^|\n\n)#data\n/);
122 var input, errorsStart, fragmentStart, contextElement, domStart, dom;
123 if (data = tests.shift())
125 stat.data = "Running test " + test_number + " of " + (test_number + tests.length) + " in " + file;
126 errorsStart = data.indexOf("\n#errors\n");
127 if (errorsStart !== -1)
129 input = data.substring(0, errorsStart);
130 fragmentStart = data.indexOf("\n#document-fragment\n")
131 domStart = data.indexOf("\n#document\n")
132 if (fragmentStart !== -1)
134 contextElement = data.substring(fragmentStart + 20, domStart);
138 dom = data.substring(domStart + 11);
139 if (dom.substring(dom.length - 1) === "\n")
141 dom = dom.substring(0, dom.length - 1);
143 run_test(input, contextElement, dom);
147 alert("Invalid test: " + data);
153 stat.data = "Finished running " + file;
154 var overview = document.createElement("p");
155 if (fail_list.length)
157 overview.innerHTML = file + ":<br>" + fail_list.join("<br>");
158 overview.className = "overview";
159 overview.title = "Click for more details";
160 overview.onclick = function()
162 this.nextSibling.style.display = this.nextSibling.style.display == "none" ? "block" : "none";
164 var detail = document.createElement("pre");
165 detail.appendChild(document.createTextNode(log.substring(2)));
166 detail.style.display = "block";
167 document.body.appendChild(overview);
168 document.body.appendChild(detail);
172 overview.innerHTML = file + ": PASS";
173 document.body.appendChild(overview);
180 function run_test(input, contextElement, expected)
184 var element = document.createElement(contextElement);
187 element.innerHTML = input;
190 process_result(input, element, expected);
194 iframe.contentWindow.document.open();
197 iframe.contentWindow.document.write(input);
200 iframe.contentWindow.document.close();
203 var title = iframe.contentWindow.document.getElementsByTagName("title")[0];
204 if (!title.innerHTML)
206 title.parentElement.removeChild(title);
209 process_result(input, iframe.contentWindow.document, expected);
213 iframe.onload = function()
217 var title = iframe.contentWindow.document.getElementsByTagName("title")[0];
218 if (!title.innerHTML)
220 title.parentElement.removeChild(title);
223 process_result(input, iframe.contentWindow.document, expected);
225 iframe.src = "data:text/html," + encodeURIComponent(input);
229 function process_result(input, result, expected)
231 result = Markup.get(result);
232 if (result !== expected)
234 fail_list.push(test_number);
235 log += "\n\nTest " + (test_number) + " of " + (test_number + tests.length) + " in " + file + " failed. Input:\n" + input + "\nGot:\n" + result + "\nExpected:\n" + expected;