Index: LayoutTests/fast/dom/DOMException/prototype-object.html |
diff --git a/LayoutTests/fast/dom/DOMException/prototype-object.html b/LayoutTests/fast/dom/DOMException/prototype-object.html |
index 84b22091ca840f9383b2f038944f606aeed585b5..5bf1745dba44fe02929e0f7949b00569cd0f06de 100644 |
--- a/LayoutTests/fast/dom/DOMException/prototype-object.html |
+++ b/LayoutTests/fast/dom/DOMException/prototype-object.html |
@@ -14,7 +14,7 @@ try { |
shouldBeEqualToString("e.toString()", "HierarchyRequestError: Failed to execute 'appendChild' on 'Node': The new child element contains the parent."); |
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"); |