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

Unified Diff: LayoutTests/fast/dom/HTMLMeterElement/set-meter-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/HTMLMeterElement/set-meter-properties-expected.txt
diff --git a/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties-expected.txt b/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties-expected.txt
index b356ee8c387688656d8ea17cc414461d3892bbef..8afb52a428a7f89657d23222aa10265a74c1d613 100644
--- a/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties-expected.txt
+++ b/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties-expected.txt
@@ -44,17 +44,17 @@ PASS m.low is 0.0
PASS m.high is 200.0
PASS m.optimum is 12.5
Set value to invalid value
-PASS m.value = "value"; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS m.value = "value"; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set min to NaN
-PASS m.min = NaN; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS m.min = NaN; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set max to Infinity
-PASS m.max = Infinity; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS m.max = Infinity; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set low to invalid value
-PASS m.low = "low"; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS m.low = "low"; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set high to NaN
-PASS m.high = NaN; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS m.high = NaN; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set optimum to Infinity
-PASS m.optimum = Infinity; threw exception Error: NotSupportedError: DOM Exception 9.
+PASS m.optimum = Infinity; threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
Set attributes to valid numbers
PASS m.value is 5
PASS m.max is 10

Powered by Google App Engine
This is Rietveld 408576698