Index: LayoutTests/fast/speech/scripted/speechgrammar-basics-expected.txt |
diff --git a/LayoutTests/fast/speech/scripted/speechgrammar-basics-expected.txt b/LayoutTests/fast/speech/scripted/speechgrammar-basics-expected.txt |
index fdda2704961ed8a2156ea8f3d60cb41a476cfdd1..1e67e58120aae890f3ad6689b477b495af7f7b47 100644 |
--- a/LayoutTests/fast/speech/scripted/speechgrammar-basics-expected.txt |
+++ b/LayoutTests/fast/speech/scripted/speechgrammar-basics-expected.txt |
@@ -24,13 +24,13 @@ PASS gs == null is false |
PASS gs.length is 0 |
PASS gs.item(0) == null is true |
PASS gs[0] == undefined is true |
-PASS gs.item(-1) threw exception Error: IndexSizeError: DOM Exception 1. |
+PASS gs.item(-1) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value.. |
PASS gs[-1] == undefined is true |
gs.addFromUri('grammar', 2) |
PASS gs.length is 1 |
PASS gs.item(1) == null is true |
PASS gs[1] == undefined is true |
-PASS gs.item(-1) threw exception Error: IndexSizeError: DOM Exception 1. |
+PASS gs.item(-1) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value.. |
PASS gs[-1] == undefined is true |
PASS gs[0] is gs.item(0) |
PASS gs.item(0).src is base + 'grammar' |