summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/media_uitest.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/browser/media_uitest.cc b/chrome/browser/media_uitest.cc
index ce80710..41b949c 100644
--- a/chrome/browser/media_uitest.cc
+++ b/chrome/browser/media_uitest.cc
@@ -47,6 +47,17 @@ class MediaTest : public UITest {
}
};
+// <video> and <audio> only works stably on Windows.
+#if defined(OS_WIN)
+
+// TODO(hclam): The following test is disabled because it contains audio and
+// this test doesn't work with audio device.
TEST_F(MediaTest, DISABLED_VideoBearH264) {
PlayVideo("bear.mp4");
}
+
+TEST_F(MediaTest, VideoBearSilentTheora) {
+ PlayVideo("bear_silent.ogv");
+}
+
+#endif