| OLD | NEW |
| 1 var namespaces = { | 1 var namespaces = { |
| 2 "html":"http://www.w3.org/1999/xhtml", | 2 "html":"http://www.w3.org/1999/xhtml", |
| 3 "mathml":"http://www.w3.org/1998/Math/MathML", | 3 "mathml":"http://www.w3.org/1998/Math/MathML", |
| 4 "svg":"http://www.w3.org/2000/svg", | 4 "svg":"http://www.w3.org/2000/svg", |
| 5 "xlink":"http://www.w3.org/1999/xlink", | 5 "xlink":"http://www.w3.org/1999/xlink", |
| 6 "xml":"http://www.w3.org/XML/1998/namespace", | 6 "xml":"http://www.w3.org/XML/1998/namespace", |
| 7 "xmlns":"http://www.w3.org/2000/xmlns/" | 7 "xmlns":"http://www.w3.org/2000/xmlns/" |
| 8 }; | 8 }; |
| 9 | 9 |
| 10 var prefixes = {}; | 10 var prefixes = {}; |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 322 |
| 323 onload = function() { | 323 onload = function() { |
| 324 Array.prototype.forEach.call(document.getElementsByTagName("iframe"), | 324 Array.prototype.forEach.call(document.getElementsByTagName("iframe"), |
| 325 function(iframe) { | 325 function(iframe) { |
| 326 if (tests_started<order.length) { | 326 if (tests_started<order.length) { |
| 327 test_next(iframe); | 327 test_next(iframe); |
| 328 } | 328 } |
| 329 }); | 329 }); |
| 330 }; | 330 }; |
| 331 } | 331 } |
| OLD | NEW |