Skip to content

Commit

Permalink
[Android WebView] Enable inline video tests with sandboxed renderer
Browse files Browse the repository at this point in the history
BUG=545618

Review URL: https://codereview.chromium.org/1601393003

Cr-Commit-Position: refs/heads/master@{#370452}
  • Loading branch information
mnaganov authored and Commit bot committed Jan 20, 2016
1 parent 0c8d516 commit bcccb0b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import org.chromium.android_webview.test.util.JavascriptEventObserver;
import org.chromium.android_webview.test.util.VideoSurfaceViewUtils;
import org.chromium.base.test.util.Feature;
import org.chromium.base.test.util.parameter.ParameterizedTest;
import org.chromium.content.browser.ContentViewCore;
import org.chromium.content.browser.test.util.Criteria;
import org.chromium.content.browser.test.util.CriteriaHelper;
Expand Down Expand Up @@ -196,8 +195,6 @@ public void doTestOnShowCustomViewAndPlayWithHtmlControl(String videoTestUrl) th

@MediumTest
@Feature({"AndroidWebView"})
// Run in single-process mode only. Blocked by inline video support crbug.com/545618.
@ParameterizedTest.Set
public void testHolePunchingSurfaceNotCreatedForClearVideo()
throws Throwable {
loadTestPage(VIDEO_TEST_URL);
Expand Down Expand Up @@ -316,8 +313,6 @@ public void testPowerSaveBlockerIsEnabledDuringFullscreenPlayback_video()

@MediumTest
@Feature({"AndroidWebView"})
// Run in single-process mode only. Blocked by inline video support crbug.com/545618.
@ParameterizedTest.Set
public void testPowerSaveBlockerIsEnabledDuringFullscreenPlayback_videoInsideDiv()
throws Throwable {
doTestPowerSaveBlockerIsEnabledDuringFullscreenPlayback(VIDEO_INSIDE_DIV_TEST_URL);
Expand All @@ -343,8 +338,6 @@ public void doTestPowerSaveBlockerIsEnabledDuringFullscreenPlayback(String video

@MediumTest
@Feature({"AndroidWebView"})
// Run in single-process mode only. Blocked by inline video support crbug.com/545618.
@ParameterizedTest.Set
public void testPowerSaveBlockerIsEnabledDuringEmbeddedPlayback()
throws Throwable {
assertFalse(DOMUtils.isFullscreen(getWebContentsOnUiThread()));
Expand All @@ -364,8 +357,6 @@ public void testPowerSaveBlockerIsEnabledDuringEmbeddedPlayback()

@MediumTest
@Feature({"AndroidWebView"})
// Run in single-process mode only. Blocked by inline video support crbug.com/545618.
@ParameterizedTest.Set
public void testPowerSaveBlockerIsTransferredToFullscreen()
throws Throwable {
assertFalse(DOMUtils.isFullscreen(getWebContentsOnUiThread()));
Expand Down Expand Up @@ -394,8 +385,6 @@ public void testPowerSaveBlockerIsTransferredToFullscreen()

@MediumTest
@Feature({"AndroidWebView"})
// Run in single-process mode only. Blocked by inline video support crbug.com/545618.
@ParameterizedTest.Set
public void testPowerSaveBlockerIsTransferredToEmbedded()
throws Throwable {
// Enter fullscreen.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import org.chromium.android_webview.test.util.VideoSurfaceViewUtils;
import org.chromium.base.test.util.Feature;
import org.chromium.base.test.util.parameter.ParameterizedTest;
import org.chromium.content.browser.ContentViewCore;
import org.chromium.content.browser.test.util.DOMUtils;
import org.chromium.content_public.browser.WebContents;
Expand All @@ -18,8 +17,6 @@
/**
* Tests pages with multiple videos.
*/
// Run in single-process mode only. Blocked by inline video support crbug.com/545618.
@ParameterizedTest.Set
public class MultipleVideosTest extends AwTestBase {
private static final String MULTIPLE_VIDEOS_TEST_URL =
"file:///android_asset/multiple_videos_test.html";
Expand Down

0 comments on commit bcccb0b

Please sign in to comment.