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

Unified Diff: LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties-expected.txt

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/HTMLProgressElement/set-progress-properties-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties-expected.txt b/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties-expected.txt
index 06a3fd50d6462667393e291b1890f5ea8c072099..284aa1cd0c50995b1c9188606fe07b688cfd7e52 100644
--- a/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties-expected.txt
+++ b/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties-expected.txt
@@ -19,13 +19,13 @@ Set value less than zero
PASS p.value is 0
PASS p.position is 0
Set invalid value, should throw
-PASS p.value = "200A"; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS p.value = "200A"; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set invalid max, should throw
-PASS p.max = "max"; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS p.max = "max"; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set max to Infinity, should throw
-PASS p.max = Infinity; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS p.max = Infinity; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set value to NaN, should throw
-PASS p.value = NaN; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS p.value = NaN; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set value to null and max to 0
PASS p.value is 0
PASS p.max is 1

Powered by Google App Engine
This is Rietveld 408576698