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

Side by Side Diff: LayoutTests/http/tests/media/media-source/webkitmediasource-add-and-remove-buffers-expected.txt

Issue 16818023: DOMException toString is not correct (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Tests webkitSourceAddId() & webkitSourceRemoveId() methods 1 Tests webkitSourceAddId() & webkitSourceRemoveId() methods
2 2
3 Test adding an ID while closed. 3 Test adding an ID while closed.
4 Got expected exception Error: InvalidStateError: DOM Exception 11 4 Got expected exception InvalidStateError: An attempt was made to use an object t hat is not, or is no longer, usable.
5 5
6 running testAddBufferFailureCases 6 running testAddBufferFailureCases
7 EVENT(webkitsourceopen) 7 EVENT(webkitsourceopen)
8 Test empty type. 8 Test empty type.
9 Got expected exception Error: InvalidAccessError: DOM Exception 15 9 Got expected exception InvalidAccessError: A parameter or an operation was not s upported by the underlying object.
10 Test an unsupported type. 10 Test an unsupported type.
11 Got expected exception Error: NotSupportedError: DOM Exception 9 11 Got expected exception NotSupportedError: The implementation did not support the requested type of object or operation.
12 Test a supported type with an unsupported codec. 12 Test a supported type with an unsupported codec.
13 Got expected exception Error: NotSupportedError: DOM Exception 9 13 Got expected exception NotSupportedError: The implementation did not support the requested type of object or operation.
14 Test reaching sourceID limit. 14 Test reaching sourceID limit.
15 Test that SourceBuffers can't be added while in the ended state. 15 Test that SourceBuffers can't be added while in the ended state.
16 Got expected exception Error: InvalidStateError: DOM Exception 11 16 Got expected exception InvalidStateError: An attempt was made to use an object t hat is not, or is no longer, usable.
17 17
18 running testRemoveNullBuffer 18 running testRemoveNullBuffer
19 EVENT(webkitsourceopen) 19 EVENT(webkitsourceopen)
20 Test null buffer case 20 Test null buffer case
21 Got expected exception Error: InvalidAccessError: DOM Exception 15 21 Got expected exception InvalidAccessError: A parameter or an operation was not s upported by the underlying object.
22 22
23 running testRemoveAgain 23 running testRemoveAgain
24 EVENT(webkitsourceopen) 24 EVENT(webkitsourceopen)
25 Test removing a buffer that was already removed. 25 Test removing a buffer that was already removed.
26 Got expected exception Error: InvalidStateError: DOM Exception 11 26 Got expected exception InvalidStateError: An attempt was made to use an object t hat is not, or is no longer, usable.
27 27
28 running testRemoveBufferAfterEnded 28 running testRemoveBufferAfterEnded
29 EVENT(webkitsourceopen) 29 EVENT(webkitsourceopen)
30 Test that a buffer can be removed while in the ended state. 30 Test that a buffer can be removed while in the ended state.
31 31
32 running testAddBufferAfterRemoving 32 running testAddBufferAfterRemoving
33 EVENT(webkitsourceopen) 33 EVENT(webkitsourceopen)
34 Test that a buffer can be added again after it is removed. 34 Test that a buffer can be added again after it is removed.
35 35
36 running testAppendFailureCases 36 running testAppendFailureCases
37 EVENT(webkitsourceopen) 37 EVENT(webkitsourceopen)
38 Test a successful append. 38 Test a successful append.
39 Test append with a null buffer. 39 Test append with a null buffer.
40 Got expected exception Error: InvalidAccessError: DOM Exception 15 40 Got expected exception InvalidAccessError: A parameter or an operation was not s upported by the underlying object.
41 Test append after buffer has been removed. 41 Test append after buffer has been removed.
42 Got expected exception Error: InvalidStateError: DOM Exception 11 42 Got expected exception InvalidStateError: An attempt was made to use an object t hat is not, or is no longer, usable.
43 END OF TEST 43 END OF TEST
44 44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698