OLD | NEW |
1 /* | 1 /* |
2 * document.createElement(NS) | 2 * document.createElement(NS) |
3 * | 3 * |
4 * document.getElementsByTagName(NS) | 4 * document.getElementsByTagName(NS) |
5 * | 5 * |
6 * Element.setAttribute(NS) | 6 * Element.setAttribute(NS) |
7 * | 7 * |
8 * Element.getAttribute(NS) | 8 * Element.getAttribute(NS) |
9 * Element.hasAttribute(NS) | 9 * Element.hasAttribute(NS) |
10 * Element.getElementsByTagName(NS) | 10 * Element.getElementsByTagName(NS) |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 } | 177 } |
178 } | 178 } |
179 | 179 |
180 function test_func() { | 180 function test_func() { |
181 var func = arguments[0]; | 181 var func = arguments[0]; |
182 var rest = arguments[1]; | 182 var rest = arguments[1]; |
183 func.apply(this, rest); | 183 func.apply(this, rest); |
184 } | 184 } |
185 | 185 |
186 generate_tests(test_func, tests); | 186 generate_tests(test_func, tests); |
OLD | NEW |