2012-05-21 04:12:37 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2008-07-29 21:55:27 -07:00
|
|
|
|
2009-07-09 19:03:01 -07:00
|
|
|
# Media tests should be backend independent, i.e., not conditioned on
|
|
|
|
# MOZ_OGG, MOZ_WAVE etc. (The only exception is the can_play_type tests,
|
|
|
|
# which necessarily depend on the backend(s) configured.) As far as possible,
|
|
|
|
# each test should work with any resource type. This makes it
|
|
|
|
# easy to add new backends and reduces the amount of test duplication.
|
|
|
|
|
|
|
|
# For each supported backend, resources that can be played by that backend
|
|
|
|
# should be added to the lists in manifest.js. Media tests that aren't
|
|
|
|
# testing for a bug in handling a specific resource type should pick one of
|
|
|
|
# the lists in manifest.js and run the test for each resource in the list
|
|
|
|
# that is supported in the current build (the canPlayType API is useful
|
|
|
|
# for this).
|
|
|
|
|
|
|
|
# To test whether a valid resource can simply be played through correctly,
|
|
|
|
# and optionally that its metadata is read correctly, just
|
|
|
|
# add it to gPlayTests in manifest.js. To test whether an invalid
|
|
|
|
# resource correctly throws an error (and does not cause a crash or hang),
|
|
|
|
# just add it to gErrorTests in manifest.js.
|
|
|
|
|
|
|
|
# To test for a specific bug in handling a specific resource type,
|
|
|
|
# make the test first check canPlayType for the type, and if it's not
|
|
|
|
# supported, just do ok(true, "Type not supported") and stop the test.
|
|
|
|
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES = \
|
2010-05-30 15:02:06 -07:00
|
|
|
allowed.sjs \
|
2008-12-16 18:11:07 -08:00
|
|
|
can_play_type_ogg.js \
|
|
|
|
can_play_type_wave.js \
|
2010-06-08 16:31:27 -07:00
|
|
|
can_play_type_webm.js \
|
2013-06-12 15:15:23 -07:00
|
|
|
can_play_type_dash.js \
|
2012-12-18 00:49:58 -08:00
|
|
|
can_play_type_mpeg.js \
|
2009-10-14 19:20:49 -07:00
|
|
|
cancellable_request.sjs \
|
2010-05-30 15:02:06 -07:00
|
|
|
dynamic_redirect.sjs \
|
2011-11-24 18:06:22 -08:00
|
|
|
dynamic_resource.sjs \
|
2010-05-30 15:02:06 -07:00
|
|
|
file_access_controls.html \
|
2011-08-24 16:42:27 -07:00
|
|
|
fragment_play.js \
|
|
|
|
fragment_noplay.js \
|
2009-07-09 19:03:01 -07:00
|
|
|
manifest.js \
|
2009-10-01 07:10:13 -07:00
|
|
|
reactivate_helper.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
redirect.sjs \
|
2010-09-16 10:36:23 -07:00
|
|
|
referer.sjs \
|
2009-07-09 19:03:02 -07:00
|
|
|
seek1.js \
|
|
|
|
seek2.js \
|
|
|
|
seek3.js \
|
|
|
|
seek4.js \
|
|
|
|
seek5.js \
|
|
|
|
seek6.js \
|
|
|
|
seek7.js \
|
|
|
|
seek8.js \
|
|
|
|
seek9.js \
|
2009-10-20 20:24:21 -07:00
|
|
|
seek10.js \
|
2010-05-30 15:02:06 -07:00
|
|
|
seek11.js \
|
2011-01-31 18:57:13 -08:00
|
|
|
seek12.js \
|
|
|
|
seek13.js \
|
2011-02-20 19:38:29 -08:00
|
|
|
seekLies.sjs \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_access_control.html \
|
2009-07-09 19:03:02 -07:00
|
|
|
test_audio1.html \
|
|
|
|
test_audio2.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_autoplay.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_bug495145.html \
|
2009-10-19 19:48:03 -07:00
|
|
|
test_bug495300.html \
|
2013-06-11 08:23:13 -07:00
|
|
|
test_bug654550.html \
|
2011-09-29 21:13:15 -07:00
|
|
|
test_bug686942.html \
|
2008-12-16 18:11:07 -08:00
|
|
|
test_can_play_type.html \
|
2012-12-18 00:49:58 -08:00
|
|
|
test_can_play_type_mpeg.html \
|
2012-02-26 15:51:52 -08:00
|
|
|
test_closing_connections.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_constants.html \
|
|
|
|
test_controls.html \
|
|
|
|
test_currentTime.html \
|
2009-09-21 17:08:13 -07:00
|
|
|
test_decode_error.html \
|
2011-12-15 11:36:46 -08:00
|
|
|
test_defaultMuted.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_delay_load.html \
|
|
|
|
test_error_on_404.html \
|
|
|
|
test_info_leak.html \
|
2012-11-19 15:13:43 -08:00
|
|
|
test_invalid_reject.html \
|
2009-07-09 19:03:01 -07:00
|
|
|
test_load.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_load_candidates.html \
|
2011-11-24 18:06:22 -08:00
|
|
|
test_load_same_resource.html \
|
2010-07-25 15:45:18 -07:00
|
|
|
test_load_source.html \
|
2011-11-20 14:59:01 -08:00
|
|
|
test_loop.html \
|
2012-07-30 17:14:29 -07:00
|
|
|
test_metadata.html \
|
2012-01-29 23:04:44 -08:00
|
|
|
test_no_load_event.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_networkState.html \
|
2010-03-17 20:00:18 -07:00
|
|
|
test_new_audio.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_paused.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_paused_after_ended.html \
|
|
|
|
test_play_events.html \
|
2010-08-01 22:53:45 -07:00
|
|
|
test_play_events_2.html \
|
2009-07-09 19:03:01 -07:00
|
|
|
test_playback_errors.html \
|
2012-05-07 15:54:29 -07:00
|
|
|
test_seekable1.html \
|
2010-08-26 19:11:46 -07:00
|
|
|
test_preload_actions.html \
|
|
|
|
test_preload_attribute.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_progress.html \
|
2009-10-01 07:10:13 -07:00
|
|
|
test_reactivate.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_readyState.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_replay_metadata.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_seek2.html \
|
2012-08-19 17:10:05 -07:00
|
|
|
test_seek_out_of_range.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_source.html \
|
|
|
|
test_source_write.html \
|
2012-11-22 02:38:28 -08:00
|
|
|
test_source_null.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_standalone.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
test_volume.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_video_to_canvas.html \
|
2010-08-25 06:10:00 -07:00
|
|
|
test_audiowrite.html \
|
2013-07-21 18:37:42 -07:00
|
|
|
test_mediarecorder_creation.html \
|
2013-08-10 20:35:16 -07:00
|
|
|
test_mediarecorder_avoid_recursion.html \
|
2013-08-29 09:56:12 -07:00
|
|
|
test_mediarecorder_record_timeslice.html \
|
2013-07-25 19:47:56 -07:00
|
|
|
test_mediarecorder_record_audiocontext.html \
|
2013-08-06 23:20:42 -07:00
|
|
|
test_mediarecorder_record_stopms.html \
|
2012-04-28 08:01:10 -07:00
|
|
|
test_mozHasAudio.html \
|
2012-05-15 05:56:51 -07:00
|
|
|
test_source_media.html \
|
2012-06-08 10:41:45 -07:00
|
|
|
test_autoplay_contentEditable.html \
|
|
|
|
test_bug448534.html \
|
|
|
|
test_bug463162.xhtml \
|
|
|
|
test_decoder_disable.html \
|
2013-08-20 23:40:29 -07:00
|
|
|
test_mediarecorder_record_no_timeslice.html \
|
2013-07-21 07:33:01 -07:00
|
|
|
test_mediarecorder_reload_crash.html \
|
2013-08-06 22:13:37 -07:00
|
|
|
test_mediarecorder_record_immediate_stop.html \
|
2012-06-08 10:41:45 -07:00
|
|
|
test_media_selection.html \
|
|
|
|
test_playback.html \
|
|
|
|
test_seekLies.html \
|
2012-09-04 16:22:34 -07:00
|
|
|
test_media_sniffer.html \
|
|
|
|
contentType.sjs \
|
2012-09-23 20:47:30 -07:00
|
|
|
test_streams_srcObject.html \
|
2012-12-28 13:54:23 -08:00
|
|
|
test_reset_src.html \
|
2013-04-02 23:58:48 -07:00
|
|
|
test_streams_autoplay.html \
|
2013-09-05 20:14:48 -07:00
|
|
|
test_streams_element_capture.html \
|
|
|
|
test_streams_element_capture_reset.html \
|
|
|
|
test_streams_element_capture_createObjectURL.html \
|
2013-04-16 22:18:53 -07:00
|
|
|
test_streams_gc.html \
|
|
|
|
test_streams_tracks.html \
|
2012-11-20 16:13:04 -08:00
|
|
|
$(filter disabled-for-intermittent-failures--bug-608634, test_error_in_video_document.html) \
|
2013-06-20 06:55:00 -07:00
|
|
|
test_texttrack.html \
|
2013-06-24 19:23:00 -07:00
|
|
|
test_texttrackcue.html \
|
2013-04-24 02:19:08 -07:00
|
|
|
test_timeupdate_small_files.html \
|
2013-06-12 15:15:23 -07:00
|
|
|
test_unseekable.html \
|
2013-07-10 20:52:22 -07:00
|
|
|
test_VideoPlaybackQuality.html \
|
|
|
|
test_VideoPlaybackQuality_disabled.html \
|
2013-06-20 06:55:00 -07:00
|
|
|
test_webvtt_disabled.html \
|
2013-07-11 07:58:57 -07:00
|
|
|
test_playback_rate_playpause.html \
|
2013-08-15 15:30:13 -07:00
|
|
|
test_bug895305.html \
|
2012-06-08 10:41:45 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2011-01-29 20:36:19 -08:00
|
|
|
# Don't run in suite
|
|
|
|
ifndef MOZ_SUITE
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += test_play_twice.html
|
2011-01-29 20:36:19 -08:00
|
|
|
else
|
2012-11-20 16:13:04 -08:00
|
|
|
$(filter disabled-pending-investigation--bug-598252, test_play_twice.html)
|
2011-01-29 20:36:19 -08:00
|
|
|
endif
|
|
|
|
|
2010-05-30 15:02:06 -07:00
|
|
|
# These tests are disabled until we figure out random failures.
|
|
|
|
# When these tests are fixed, we should also make them backend-independent.
|
2009-10-14 21:53:00 -07:00
|
|
|
# test_resume.html \
|
2010-05-30 15:02:06 -07:00
|
|
|
# Bug 492821:
|
|
|
|
# test_videoDocumentTitle.html
|
|
|
|
# Bug 493692:
|
2010-08-19 15:50:37 -07:00
|
|
|
# test_preload_suspend.html
|
2010-08-20 18:46:19 -07:00
|
|
|
# Bug 567954 and Bug 574586:
|
|
|
|
# test_mixed_principals.html
|
2010-05-30 15:02:06 -07:00
|
|
|
# Disabled since we don't play Wave files standalone, for now
|
|
|
|
# test_audioDocumentTitle.html
|
|
|
|
|
2013-09-11 16:23:06 -07:00
|
|
|
# The below tests are disabled on Windows due to frequent timeouts.
|
2013-07-12 13:14:58 -07:00
|
|
|
# Bug 832768 and Bug 864682:
|
2013-07-15 08:45:10 -07:00
|
|
|
# test_buffered.html
|
2013-07-12 13:14:58 -07:00
|
|
|
# test_bug465498.html
|
|
|
|
# Bug 707777:
|
|
|
|
# test_bug493187.html
|
2013-07-19 13:07:38 -07:00
|
|
|
# Bug 832678, bug 795271, and bug 857424
|
|
|
|
# test_seek.html
|
|
|
|
# Bug 832768, bug 814533, bug 840742
|
|
|
|
# test_playback_rate.html
|
2013-09-11 16:23:06 -07:00
|
|
|
# Bug 751539
|
|
|
|
# test_played.html
|
|
|
|
ifneq ($(OS_ARCH), WINNT)
|
|
|
|
MOCHITEST_FILES += \
|
|
|
|
test_buffered.html \
|
|
|
|
test_bug465498.html \
|
|
|
|
test_bug493187.html \
|
|
|
|
test_seek.html \
|
|
|
|
test_playback_rate.html \
|
|
|
|
test_played.html \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
2013-07-12 13:14:58 -07:00
|
|
|
|
2010-06-08 16:31:27 -07:00
|
|
|
# sample files
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2009-07-09 19:03:01 -07:00
|
|
|
320x240.ogv \
|
2009-08-03 19:44:45 -07:00
|
|
|
448636.ogv \
|
2010-04-01 20:03:07 -07:00
|
|
|
audio-overhang.ogg \
|
2010-08-12 19:28:15 -07:00
|
|
|
audio-gaps.ogg \
|
2012-09-10 15:39:23 -07:00
|
|
|
badtags.ogg \
|
2009-10-04 15:54:13 -07:00
|
|
|
beta-phrasebook.ogg \
|
2013-06-12 15:15:23 -07:00
|
|
|
big-buck-bunny-unseekable.mp4 \
|
2009-09-21 17:08:13 -07:00
|
|
|
bogus.ogv \
|
2009-09-06 20:25:22 -07:00
|
|
|
bug495129.ogv \
|
2010-04-01 20:03:07 -07:00
|
|
|
bug495794.ogg \
|
2009-07-09 19:03:01 -07:00
|
|
|
bug461281.ogg \
|
|
|
|
bug482461.ogv \
|
2011-02-17 18:30:33 -08:00
|
|
|
bug482461-theora.ogv \
|
2009-10-11 17:07:51 -07:00
|
|
|
bug498380.ogv \
|
2009-08-03 23:13:40 -07:00
|
|
|
bug498855-1.ogv \
|
|
|
|
bug498855-2.ogv \
|
|
|
|
bug498855-3.ogv \
|
2009-08-03 23:13:33 -07:00
|
|
|
bug499519.ogv \
|
2009-08-03 23:13:40 -07:00
|
|
|
bug500311.ogv \
|
|
|
|
bug500311.ogv^headers^ \
|
2009-09-06 20:25:22 -07:00
|
|
|
bug501279.ogg \
|
2009-09-14 22:53:49 -07:00
|
|
|
bug504613.ogv \
|
2009-09-06 20:25:22 -07:00
|
|
|
bug504644.ogv \
|
2009-10-02 21:08:12 -07:00
|
|
|
bug504843.ogv \
|
2009-09-06 20:25:22 -07:00
|
|
|
bug506094.ogv \
|
2009-09-28 17:59:00 -07:00
|
|
|
bug516323.ogv \
|
2010-08-19 15:50:37 -07:00
|
|
|
bug516323.indexed.ogv \
|
2009-10-13 20:35:59 -07:00
|
|
|
bug520493.ogg \
|
2009-10-13 20:36:01 -07:00
|
|
|
bug520500.ogg \
|
2009-10-14 18:28:59 -07:00
|
|
|
bug520908.ogv \
|
|
|
|
bug520908.ogv^headers^ \
|
2009-10-22 15:17:35 -07:00
|
|
|
bug523816.ogv \
|
2010-01-07 20:55:39 -08:00
|
|
|
bug533822.ogg \
|
2010-04-08 01:16:02 -07:00
|
|
|
bug557094.ogv \
|
2011-03-23 18:16:30 -07:00
|
|
|
bug556821.ogv \
|
2010-08-04 20:49:27 -07:00
|
|
|
bug580982.webm \
|
2010-10-16 12:57:45 -07:00
|
|
|
bug603918.webm \
|
|
|
|
bug604067.webm \
|
2009-10-02 21:08:12 -07:00
|
|
|
chain.ogv \
|
2012-11-30 05:17:55 -08:00
|
|
|
chain.ogg \
|
|
|
|
chain.opus \
|
|
|
|
variable-samplerate.ogg \
|
|
|
|
variable-samplerate.opus \
|
|
|
|
variable-channel.ogg \
|
|
|
|
variable-channel.opus \
|
|
|
|
chained-video.ogv \
|
|
|
|
chained-audio-video.ogg \
|
2012-12-03 06:44:26 -08:00
|
|
|
variable-preskip.opus \
|
2009-09-21 17:25:24 -07:00
|
|
|
dirac.ogg \
|
2011-08-04 13:44:24 -07:00
|
|
|
multiple-bos.ogg \
|
2013-06-12 15:15:23 -07:00
|
|
|
no-cues.webm \
|
2012-12-18 00:38:37 -08:00
|
|
|
owl.mp3 \
|
2013-09-08 14:47:54 -07:00
|
|
|
owl-funnier-id3.mp3 \
|
2013-08-28 15:53:03 -07:00
|
|
|
owl-funny-id3.mp3 \
|
2010-10-06 15:58:36 -07:00
|
|
|
split.webm \
|
2009-07-09 19:03:01 -07:00
|
|
|
seek.ogv \
|
2010-06-08 16:31:27 -07:00
|
|
|
seek.webm \
|
2010-07-26 12:35:16 -07:00
|
|
|
seek.yuv \
|
2009-08-16 14:32:24 -07:00
|
|
|
short-video.ogv \
|
2009-07-09 19:03:01 -07:00
|
|
|
small-shot.ogg \
|
2012-12-18 00:38:37 -08:00
|
|
|
small-shot.m4a \
|
|
|
|
small-shot.mp3 \
|
2009-07-09 19:03:01 -07:00
|
|
|
sound.ogg \
|
2010-12-19 11:05:40 -08:00
|
|
|
spacestorm-1000Hz-100ms.ogg \
|
2013-05-01 14:15:57 -07:00
|
|
|
test-1-mono.opus \
|
|
|
|
test-2-stereo.opus \
|
|
|
|
test-3-LCR.opus \
|
|
|
|
test-4-quad.opus \
|
|
|
|
test-5-5.0.opus \
|
|
|
|
test-6-5.1.opus \
|
|
|
|
test-7-6.1.opus \
|
|
|
|
test-8-7.1.opus \
|
2013-08-08 08:12:32 -07:00
|
|
|
vbr.mp3 \
|
2010-04-01 20:03:07 -07:00
|
|
|
video-overhang.ogg \
|
2010-08-25 06:10:00 -07:00
|
|
|
file_a4_tone.ogg \
|
2012-05-01 17:29:42 -07:00
|
|
|
detodos.opus \
|
2012-09-04 16:24:34 -07:00
|
|
|
notags.mp3 \
|
|
|
|
id3tags.mp3 \
|
2013-06-24 19:23:00 -07:00
|
|
|
basic.vtt \
|
2009-07-09 19:03:01 -07:00
|
|
|
$(NULL)
|
2009-11-06 16:27:37 -08:00
|
|
|
|
2009-07-09 19:03:01 -07:00
|
|
|
# Wave sample files
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2009-07-09 19:03:01 -07:00
|
|
|
big.wav \
|
2009-09-21 17:08:13 -07:00
|
|
|
bogus.wav \
|
|
|
|
r11025_msadpcm_c1.wav \
|
2009-07-09 19:03:01 -07:00
|
|
|
r11025_s16_c1.wav \
|
|
|
|
r11025_s16_c1_trailing.wav \
|
|
|
|
r11025_u8_c1.wav \
|
|
|
|
r11025_u8_c1_trunc.wav \
|
|
|
|
r16000_u8_c1_list.wav \
|
2011-03-29 22:37:42 -07:00
|
|
|
wavedata_u8.wav \
|
|
|
|
wavedata_s16.wav \
|
2012-10-06 04:32:30 -07:00
|
|
|
wave_metadata_bad_len.wav \
|
|
|
|
wave_metadata_bad_no_null.wav \
|
|
|
|
wave_metadata_bad_utf8.wav \
|
|
|
|
wave_metadata_unknown_tag.wav \
|
|
|
|
wave_metadata_utf8.wav \
|
|
|
|
wave_metadata.wav \
|
2011-04-13 15:12:23 -07:00
|
|
|
audio.wav \
|
2009-07-09 19:03:01 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2012-08-10 01:15:20 -07:00
|
|
|
# Media plugin sample files
|
|
|
|
MOCHITEST_FILES += \
|
|
|
|
gizmo.mp4 \
|
|
|
|
$(NULL)
|
|
|
|
|
2009-09-21 17:08:13 -07:00
|
|
|
# Other files
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2009-09-21 17:08:13 -07:00
|
|
|
bogus.duh \
|
2012-11-19 15:13:43 -08:00
|
|
|
invalid-m0c0.opus \
|
|
|
|
invalid-m0c3.opus \
|
|
|
|
invalid-m1c0.opus \
|
|
|
|
invalid-m1c9.opus \
|
|
|
|
invalid-m2c0.opus \
|
|
|
|
invalid-m2c1.opus \
|
|
|
|
invalid-cmap-short.opus \
|
|
|
|
invalid-cmap-s0c0.opus \
|
|
|
|
invalid-cmap-s0c2.opus \
|
|
|
|
invalid-cmap-s1c2.opus \
|
2009-09-21 17:08:13 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2010-05-30 15:02:06 -07:00
|
|
|
# These tests contain backend-specific tests. Try to write backend
|
|
|
|
# independent tests rather than adding to this list.
|
2008-12-15 15:31:51 -08:00
|
|
|
ifdef MOZ_OGG
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2010-05-30 15:02:06 -07:00
|
|
|
test_can_play_type_ogg.html \
|
2012-06-08 10:41:45 -07:00
|
|
|
noContentLength.sjs \
|
|
|
|
test_seekable3.html \
|
|
|
|
test_a4_tone.html \
|
|
|
|
file_audio_event_adopt_iframe.html \
|
|
|
|
test_audio_event_adopt.html \
|
|
|
|
test_referer.html \
|
|
|
|
test_bug686137.html \
|
2009-02-07 02:10:34 -08:00
|
|
|
test_contentDuration1.html \
|
|
|
|
test_contentDuration2.html \
|
|
|
|
test_contentDuration3.html \
|
|
|
|
test_contentDuration4.html \
|
|
|
|
test_contentDuration5.html \
|
|
|
|
test_contentDuration6.html \
|
2010-01-27 04:29:26 -08:00
|
|
|
test_contentDuration7.html \
|
2009-02-07 02:10:34 -08:00
|
|
|
contentDuration1.sjs \
|
|
|
|
contentDuration2.sjs \
|
|
|
|
contentDuration3.sjs \
|
|
|
|
contentDuration4.sjs \
|
|
|
|
contentDuration5.sjs \
|
|
|
|
contentDuration6.sjs \
|
2010-01-27 04:29:26 -08:00
|
|
|
contentDuration7.sjs \
|
2012-06-08 12:20:14 -07:00
|
|
|
test_framebuffer.html \
|
2012-06-08 10:41:45 -07:00
|
|
|
test_seekable2.html \
|
2012-11-30 05:17:55 -08:00
|
|
|
test_chaining.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
$(NULL)
|
2013-03-22 16:13:46 -07:00
|
|
|
# Temporarily disabled for bug 754860
|
2013-03-22 17:57:17 -07:00
|
|
|
# test_bug726904.html
|
2008-12-16 18:11:07 -08:00
|
|
|
else
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2008-12-16 18:11:07 -08:00
|
|
|
test_can_play_type_no_ogg.html \
|
|
|
|
$(NULL)
|
2008-12-15 15:31:51 -08:00
|
|
|
endif
|
|
|
|
|
2010-06-08 16:31:27 -07:00
|
|
|
ifdef MOZ_WEBM
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2010-06-08 16:31:27 -07:00
|
|
|
test_can_play_type_webm.html \
|
|
|
|
$(NULL)
|
|
|
|
else
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2010-06-08 16:31:27 -07:00
|
|
|
test_can_play_type_no_webm.html \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2013-01-23 11:24:41 -08:00
|
|
|
ifdef MOZ_DASH
|
|
|
|
MOCHITEST_FILES += \
|
|
|
|
test_can_play_type_dash.html \
|
|
|
|
dash/dash-manifest.mpd \
|
2013-01-31 14:47:22 -08:00
|
|
|
dash/dash-manifest-sjs.mpd \
|
|
|
|
test_dash_detect_stream_switch.html \
|
|
|
|
dash_detect_stream_switch.sjs \
|
2013-01-23 11:24:41 -08:00
|
|
|
dash/dash-webm-video-320x180.webm \
|
|
|
|
dash/dash-webm-video-428x240.webm \
|
|
|
|
dash/dash-webm-audio-128k.webm \
|
2013-01-31 18:41:26 -08:00
|
|
|
dash/dash-manifest-garbled.mpd \
|
|
|
|
dash/dash-manifest-garbled-webm.mpd \
|
|
|
|
dash/garbled.webm \
|
2013-01-23 11:24:41 -08:00
|
|
|
$(NULL)
|
|
|
|
else
|
|
|
|
MOCHITEST_FILES += \
|
|
|
|
test_can_play_type_no_dash.html \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2008-12-15 15:31:51 -08:00
|
|
|
ifdef MOZ_WAVE
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2009-07-09 19:03:01 -07:00
|
|
|
test_can_play_type_wave.html \
|
2012-06-08 10:41:45 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
|
|
|
|
# Bug 759221
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2011-08-24 16:42:27 -07:00
|
|
|
test_fragment_play.html \
|
|
|
|
test_fragment_noplay.html \
|
2011-03-29 22:37:42 -07:00
|
|
|
test_wave_data_u8.html \
|
|
|
|
test_wave_data_s16.html \
|
2009-07-09 19:03:01 -07:00
|
|
|
$(NULL)
|
|
|
|
else
|
2012-07-03 13:49:02 -07:00
|
|
|
MOCHITEST_FILES += \
|
2009-07-09 19:03:01 -07:00
|
|
|
test_can_play_type_no_wave.html \
|
2008-12-15 15:31:51 -08:00
|
|
|
$(NULL)
|
|
|
|
endif
|