Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Unified Diff: LayoutTests/fast/dom/DOMException/stack-trace.html

Issue 16818023: DOMException toString is not correct (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 271f22c9b342787838c971172e0ee9200aff8b5f..16a81eb59f0ba6088440bd6d73a679c80b0baf9f 100644
--- a/LayoutTests/fast/dom/DOMException/stack-trace.html
+++ b/LayoutTests/fast/dom/DOMException/stack-trace.html
@@ -35,8 +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.name', 'HierarchyRequestError');
-shouldBeEqualToString('e.message', 'HierarchyRequestError: DOM Exception 3');
+shouldBeEqualToString('e.message', 'A Node was inserted somewhere it doesn\'t belong.');
shouldBe('e.code', '3');
e.stack = 42;

Powered by Google App Engine
This is Rietveld 408576698