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

Unified Diff: LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.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/HTMLInputElement/input-size-attribute.html
diff --git a/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html b/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html
index bbb13e032f8b8bcfca07867b1f042b7c28a284a3..a25040498bc1f9b033db7cf34783394bf3f77bd6 100644
--- a/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html
+++ b/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html
@@ -23,7 +23,7 @@ shouldBe("input.removeAttribute('size'); input.size", "20");
shouldBe("input.setAttribute('size', '0'); input.size", "20");
shouldBe("input.setAttribute('size', '10'); input.size", "10");
-shouldThrow("input.size = 0", "'Error: IndexSizeError: DOM Exception 1'");
+shouldThrow("input.size = 0", "'IndexSizeError: Index or size was negative, or greater than the allowed value.'");
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698