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

Unified Diff: LayoutTests/media/track/text-track-cue-exceptions-expected.txt

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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/media/track/text-track-cue-exceptions-expected.txt
diff --git a/LayoutTests/media/track/text-track-cue-exceptions-expected.txt b/LayoutTests/media/track/text-track-cue-exceptions-expected.txt
index e5c54772eecb899f291fc960a67491ede97398e1..ab109371c97f6e4bdb1d023eb45356ec63d23eef 100644
--- a/LayoutTests/media/track/text-track-cue-exceptions-expected.txt
+++ b/LayoutTests/media/track/text-track-cue-exceptions-expected.txt
@@ -9,14 +9,14 @@ PASS cue.startTime = Number.NEGATIVE_INFINITY; threw exception TypeError: Failed
PASS cue.endTime = Number.NaN; threw exception TypeError: Failed to set the 'endTime' property on 'TextTrackCue': The value provided is not a number..
PASS cue.endTime = Number.POSITIVE_INFINITY; threw exception TypeError: Failed to set the 'endTime' property on 'TextTrackCue': The value provided is infinite..
PASS cue.endTime = Number.NEGATIVE_INFINITY; threw exception TypeError: Failed to set the 'endTime' property on 'TextTrackCue': The value provided is infinite..
-PASS cue.vertical = 'Invalid!'; threw exception SyntaxError: Failed to set the 'vertical' property on 'TextTrackCue': The value provided ('Invalid!') is invalid. Only 'rl', 'lr', and the empty string are accepted..
-PASS cue.line = -1; threw exception IndexSizeError: Failed to set the 'line' property on 'TextTrackCue': The snap-to-lines flag is not set, and the value provided (-1) is not between 0 and 100..
-PASS cue.line = 101; threw exception IndexSizeError: Failed to set the 'line' property on 'TextTrackCue': The snap-to-lines flag is not set, and the value provided (101) is not between 0 and 100..
-PASS cue.position = -1; threw exception IndexSizeError: Failed to set the 'line' property on 'TextTrackCue': The value provided (-1) is not between 0 and 100..
-PASS cue.position = 101; threw exception IndexSizeError: Failed to set the 'line' property on 'TextTrackCue': The value provided (101) is not between 0 and 100..
-PASS cue.size = -1; threw exception IndexSizeError: Failed to set the 'line' property on 'TextTrackCue': The value provided (-1) is not between 0 and 100..
-PASS cue.size = 101; threw exception IndexSizeError: Failed to set the 'line' property on 'TextTrackCue': The value provided (101) is not between 0 and 100..
-PASS cue.align = 'Invalid!'; threw exception SyntaxError: Failed to set the 'align' property on 'TextTrackCue': The value provided ('Invalid!') is invalid. Only 'start', 'middle', 'end', 'left', and 'right' are accepted..
+PASS cue.vertical = 'Invalid!'; threw exception SyntaxError: Failed to set the 'vertical' property on 'VTTCue': Failed to set the 'vertical' property on 'TextTrackCue': The value provided ('Invalid!') is invalid. Only 'rl', 'lr', and the empty string are accepted..
+PASS cue.line = -1; threw exception IndexSizeError: Failed to set the 'line' property on 'VTTCue': Failed to set the 'line' property on 'TextTrackCue': The snap-to-lines flag is not set, and the value provided (-1) is not between 0 and 100..
+PASS cue.line = 101; threw exception IndexSizeError: Failed to set the 'line' property on 'VTTCue': Failed to set the 'line' property on 'TextTrackCue': The snap-to-lines flag is not set, and the value provided (101) is not between 0 and 100..
+PASS cue.position = -1; threw exception IndexSizeError: Failed to set the 'position' property on 'VTTCue': The value provided (-1) is not between 0 and 100..
+PASS cue.position = 101; threw exception IndexSizeError: Failed to set the 'position' property on 'VTTCue': The value provided (101) is not between 0 and 100..
+PASS cue.size = -1; threw exception IndexSizeError: Failed to set the 'size' property on 'VTTCue': The value provided (-1) is not between 0 and 100..
+PASS cue.size = 101; threw exception IndexSizeError: Failed to set the 'size' property on 'VTTCue': The value provided (101) is not between 0 and 100..
+PASS cue.align = 'Invalid!'; threw exception SyntaxError: Failed to set the 'align' property on 'VTTCue': Failed to set the 'align' property on 'TextTrackCue': The value provided ('Invalid!') is invalid. Only 'start', 'middle', 'end', 'left', and 'right' are accepted..
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698