OLD | NEW |
1 var ReflectionHarness = {}; | 1 var ReflectionHarness = {}; |
2 | 2 |
3 // @private | 3 // @private |
4 ReflectionHarness.passed = document.getElementById("passed"); | 4 ReflectionHarness.passed = document.getElementById("passed"); |
5 ReflectionHarness.failed = document.getElementById("failed"); | 5 ReflectionHarness.failed = document.getElementById("failed"); |
6 | 6 |
7 /** | 7 /** |
8 * Should we report a failure for unexpected exceptions, or just rethrow them? | 8 * Should we report a failure for unexpected exceptions, or just rethrow them? |
9 * The original test framework reports an exception, but testharness.js doesn't | 9 * The original test framework reports an exception, but testharness.js doesn't |
10 * want that. | 10 * want that. |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 continue; | 323 continue; |
324 } | 324 } |
325 | 325 |
326 if (key in elements) { | 326 if (key in elements) { |
327 elements[key] = elements[key].concat(src[key]); | 327 elements[key] = elements[key].concat(src[key]); |
328 } else { | 328 } else { |
329 elements[key] = src[key]; | 329 elements[key] = src[key]; |
330 } | 330 } |
331 } | 331 } |
332 } | 332 } |
OLD | NEW |