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 1e67e58120aae890f3ad6689b477b495af7f7b47..0c5290a50f5e6645c5cf9257763a31e5fc423dc6 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 IndexSizeError: Index or size was negative, or greater than the allowed value.. |
+PASS gs.item(-1) is null |
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 IndexSizeError: Index or size was negative, or greater than the allowed value.. |
+PASS gs.item(-1) is null |
PASS gs[-1] == undefined is true |
PASS gs[0] is gs.item(0) |
PASS gs.item(0).src is base + 'grammar' |