| Index: LayoutTests/fast/dom/DOMException/stack-trace.html
|
| diff --git a/LayoutTests/fast/dom/DOMException/stack-trace.html b/LayoutTests/fast/dom/DOMException/stack-trace.html
|
| index 16a81eb59f0ba6088440bd6d73a679c80b0baf9f..84ca4c26893fdb7d05a00dfdd01ea30ac9484651 100644
|
| --- a/LayoutTests/fast/dom/DOMException/stack-trace.html
|
| +++ b/LayoutTests/fast/dom/DOMException/stack-trace.html
|
| @@ -35,9 +35,9 @@ shouldBeTrue('e.stack.contains("innerFunction")');
|
| shouldBeTrue('e.stack.contains("outerFunction")');
|
|
|
| shouldBeEqualToString('Object.prototype.toString.call(e)', '[object DOMException]');
|
| -shouldBeEqualToString('e.toString()', 'HierarchyRequestError: A Node was inserted somewhere it doesn\'t belong.');
|
| +shouldBeEqualToString("e.toString()", "HierarchyRequestError: Failed to execute 'appendChild' on 'ContainerNode': The new child element contains the parent.");
|
| shouldBeEqualToString('e.name', 'HierarchyRequestError');
|
| -shouldBeEqualToString('e.message', 'A Node was inserted somewhere it doesn\'t belong.');
|
| +shouldBeEqualToString("e.message", "Failed to execute 'appendChild' on 'ContainerNode': The new child element contains the parent.");
|
| shouldBe('e.code', '3');
|
|
|
| e.stack = 42;
|
|
|