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

Unified Diff: LayoutTests/fast/speech/scripted/speechgrammar-basics-expected.txt

Issue 22208002: Drop [IsIndex] IDL extended attribute from Speech types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stop using window.event Created 7 years, 4 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/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'

Powered by Google App Engine
This is Rietveld 408576698