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

Unified Diff: LayoutTests/http/tests/xmlhttprequest/XMLHttpRequestException.html

Issue 1017733003: [DO NOT LAND] Set @@toStringTag for DOM object prototypes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test expectations Created 5 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/http/tests/xmlhttprequest/XMLHttpRequestException.html
diff --git a/LayoutTests/http/tests/xmlhttprequest/XMLHttpRequestException.html b/LayoutTests/http/tests/xmlhttprequest/XMLHttpRequestException.html
index a49ba13cddd9be43c218cd542f9d1ccecde1e28c..c0efd8863125d65a5e6145e8c166deb8b25cb951 100644
--- a/LayoutTests/http/tests/xmlhttprequest/XMLHttpRequestException.html
+++ b/LayoutTests/http/tests/xmlhttprequest/XMLHttpRequestException.html
@@ -20,7 +20,7 @@
{
var _a = eval(__a);
var _b = eval(__b);
-
+
var _message;
if (_a == _b) {
_message = "PASS " + __a + " is " + __b;
@@ -45,7 +45,7 @@
shouldBeEqualToString("e.toString()", "NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://127.0.0.1:8000/xmlhttprequest/resources/infinite-loop.php'.");
shouldBeEqualToString("Object.prototype.toString.call(e)", "[object DOMException]");
- shouldBeEqualToString("Object.prototype.toString.call(e.__proto__)", "[object DOMExceptionPrototype]");
+ shouldBeEqualToString("Object.prototype.toString.call(e.__proto__)", "[object DOMException]");
shouldBeEqualToString("e.constructor.toString()", "function DOMException() { [native code] }");
shouldBe("e.constructor", "window.DOMException");
shouldBe("e.NETWORK_ERR", "e.constructor.NETWORK_ERR");

Powered by Google App Engine
This is Rietveld 408576698