diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-14 23:31:47 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-14 23:31:47 +0000 |
commit | 36db0c2847193edc90ffde211d86bcb79e05c1a1 (patch) | |
tree | 7d33765216d40aa96bc9db29ee072fdf506486d8 /android_webview | |
parent | c5dd092ff18aa41f0d317172ec40f2cf1b2a6541 (diff) | |
download | chromium_src-36db0c2847193edc90ffde211d86bcb79e05c1a1.zip chromium_src-36db0c2847193edc90ffde211d86bcb79e05c1a1.tar.gz chromium_src-36db0c2847193edc90ffde211d86bcb79e05c1a1.tar.bz2 |
Disable KeySystemTest.testSupportWidevineKeySystem
TBR=ycheo@chromium.org
BUG=384753
Review URL: https://codereview.chromium.org/332063002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277280 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r-- | android_webview/javatests/src/org/chromium/android_webview/test/KeySystemTest.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/KeySystemTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/KeySystemTest.java index 3a1475a..f3dd6ce 100644 --- a/android_webview/javatests/src/org/chromium/android_webview/test/KeySystemTest.java +++ b/android_webview/javatests/src/org/chromium/android_webview/test/KeySystemTest.java @@ -5,8 +5,8 @@ package org.chromium.android_webview.test; import android.test.suitebuilder.annotation.SmallTest; - import org.chromium.android_webview.AwContents; +import org.chromium.base.test.util.DisabledTest; import org.chromium.base.test.util.Feature; /** @@ -50,8 +50,12 @@ public class KeySystemTest extends AwTestBase { assertEquals("\"maybe\"", IsKeySystemSupported("webkit-org.w3.clearkey")); } + /* @Feature({"AndroidWebView"}) @SmallTest + crbug.com/384753. + */ + @DisabledTest public void testSupportWidevineKeySystem() throws Throwable { assertEquals("\"maybe\"", IsKeySystemSupported("com.widevine.alpha")); } |