OLD | NEW |
1 PASS "stack" in e is true | 1 PASS "stack" in e is true |
2 PASS typeof e.stack is "string" | 2 PASS typeof e.stack is "string" |
3 PASS e.stack.contains("innerFunction") is true | 3 PASS e.stack.contains("innerFunction") is true |
4 PASS e.stack.contains("outerFunction") is true | 4 PASS e.stack.contains("outerFunction") is true |
5 PASS Object.prototype.toString.call(e) is "[object DOMException]" | 5 PASS Object.prototype.toString.call(e) is "[object DOMException]" |
| 6 PASS e.toString() is "HierarchyRequestError: A Node was inserted somewhere it do
esn't belong." |
6 PASS e.name is "HierarchyRequestError" | 7 PASS e.name is "HierarchyRequestError" |
7 PASS e.message is "HierarchyRequestError: DOM Exception 3" | 8 PASS e.message is "A Node was inserted somewhere it doesn't belong." |
8 PASS e.code is 3 | 9 PASS e.code is 3 |
9 PASS e.stack === 42 is true | 10 PASS e.stack === 42 is true |
10 PASS successfullyParsed is true | 11 PASS successfullyParsed is true |
11 | 12 |
12 TEST COMPLETE | 13 TEST COMPLETE |
13 | 14 |
OLD | NEW |