| OLD | NEW |
| (Empty) |
| 1 Test HTMLMediaElement canPlayType() method with "application/octet-stream". | |
| 2 | |
| 3 These tests should always pass as no WebKit port should support "application/oct
et-stream". | |
| 4 | |
| 5 ++ Test with <video> element. | |
| 6 EXPECTED (mediaElement.canPlayType('APPLICATION/octet-stream') == '') OK | |
| 7 EXPECTED (mediaElement.canPlayType('application/octet-stream;codecs=theora') ==
'') OK | |
| 8 EXPECTED (mediaElement.canPlayType('application/octet-stream;codecs=mp4') == '')
OK | |
| 9 | |
| 10 ++ Test with <audio> element. | |
| 11 EXPECTED (mediaElement.canPlayType('APPLICATION/octet-stream') == '') OK | |
| 12 EXPECTED (mediaElement.canPlayType('application/octet-stream;codecs=theora') ==
'') OK | |
| 13 EXPECTED (mediaElement.canPlayType('application/octet-stream;codecs=mp4') == '')
OK | |
| 14 END OF TEST | |
| 15 | |
| OLD | NEW |