| Index: third_party/WebKit/LayoutTests/fast/dom/DOMException/prototype-object.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/DOMException/prototype-object.html b/third_party/WebKit/LayoutTests/fast/dom/DOMException/prototype-object.html
|
| index f15cc301ec84c9f672d47f546c241ab7cc50072b..001745c5a177b0c8771738a1fe881ceca284e67e 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/DOMException/prototype-object.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/DOMException/prototype-object.html
|
| @@ -14,7 +14,7 @@ try {
|
|
|
| shouldBeEqualToString("e.toString()", "HierarchyRequestError: Failed to execute 'appendChild' on 'Node': Nodes of type '#document' may not be inserted inside nodes of type '#document'.");
|
| 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("Object.prototype.toString.call(e.__proto__.__proto__)", "[object Error]");
|
| shouldBeEqualToString("e.constructor.toString()", "function DOMException() { [native code] }");
|
| shouldBeTrue("e instanceof DOMException");
|
|
|