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

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

Issue 197213012: Improve media-related exception messages (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove redundant TimeRanges test Created 6 years, 9 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/media/track/vtt-cue-exceptions-expected.txt
diff --git a/LayoutTests/media/track/vtt-cue-exceptions-expected.txt b/LayoutTests/media/track/vtt-cue-exceptions-expected.txt
index 0f8e4181f5e23619bbc0b1e6affe82ff5e7f7331..e552e3820d46f1fd2ec55963e7c0ca6e6a0967f2 100644
--- a/LayoutTests/media/track/vtt-cue-exceptions-expected.txt
+++ b/LayoutTests/media/track/vtt-cue-exceptions-expected.txt
@@ -6,10 +6,10 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS cue.vertical = 'Invalid!'; threw exception SyntaxError: Failed to set the 'vertical' property on 'VTTCue': 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': 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': 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.position = -1; threw exception IndexSizeError: Failed to set the 'position' property on 'VTTCue': The value provided (-1) is outside the range [0, 100]..
+PASS cue.position = 101; threw exception IndexSizeError: Failed to set the 'position' property on 'VTTCue': The value provided (101) is outside the range [0, 100]..
+PASS cue.size = -1; threw exception IndexSizeError: Failed to set the 'size' property on 'VTTCue': The value provided (-1) is outside the range [0, 100]..
+PASS cue.size = 101; threw exception IndexSizeError: Failed to set the 'size' property on 'VTTCue': The value provided (101) is outside the range [0, 100]..
PASS cue.align = 'Invalid!'; threw exception SyntaxError: Failed to set the 'align' property on 'VTTCue': The value provided ('Invalid!') is invalid. Only 'start', 'middle', 'end', 'left', and 'right' are accepted..
PASS successfullyParsed is true
« no previous file with comments | « LayoutTests/media/track/track-cue-mutable-expected.txt ('k') | LayoutTests/media/video-buffered-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698