| Index: chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
|
| diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
|
| index 875f466461eb2726278f8c9a675a4c081c1660d6..b9311fd39a5c85d78f42beb6ffef3961f864e53a 100644
|
| --- a/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
|
| +++ b/chrome/android/javatests/src/org/chromium/chrome/browser/vr_shell/WebVrTest.java
|
| @@ -229,6 +229,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * Tests that a successful requestPresent call actually enters VR
|
| */
|
| @SmallTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testRequestPresentEntersVr() throws InterruptedException {
|
| String testName = "test_requestPresent_enters_vr";
|
| loadUrl(getHtmlTestFile(testName), PAGE_LOAD_TIMEOUT_S);
|
| @@ -308,6 +309,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * Tests that non-focused tabs cannot get pose information.
|
| */
|
| @SmallTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testPoseDataUnfocusedTab() throws InterruptedException {
|
| String testName = "test_pose_data_unfocused_tab";
|
| loadUrl(getHtmlTestFile(testName), PAGE_LOAD_TIMEOUT_S);
|
| @@ -380,6 +382,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * VR Services is installed and up to date.
|
| */
|
| @MediumTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testInfoBarNotPresentWhenVrServicesCurrent() throws InterruptedException {
|
| infoBarTestHelper(VrCoreVersionChecker.VR_READY);
|
| }
|
| @@ -389,6 +392,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * VR Services is outdated.
|
| */
|
| @MediumTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testInfoBarPresentWhenVrServicesOutdated() throws InterruptedException {
|
| infoBarTestHelper(VrCoreVersionChecker.VR_OUT_OF_DATE);
|
| }
|
| @@ -398,6 +402,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * Services is missing.
|
| */
|
| @MediumTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testInfoBarPresentWhenVrServicesMissing() throws InterruptedException {
|
| infoBarTestHelper(VrCoreVersionChecker.VR_NOT_AVAILABLE);
|
| }
|
| @@ -407,6 +412,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * is not supported on the device.
|
| */
|
| @MediumTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testInfoBarNotPresentWhenVrServicesNotSupported() throws InterruptedException {
|
| infoBarTestHelper(VrCoreVersionChecker.VR_NOT_SUPPORTED);
|
| }
|
| @@ -416,6 +422,7 @@ public class WebVrTest extends ChromeTabbedActivityTestBase {
|
| * devices the WebVR tests are run on continuously.
|
| */
|
| @MediumTest
|
| + @DisabledTest(message = "crbug.com/713781")
|
| public void testDeviceCapabilitiesMatchExpectations() throws InterruptedException {
|
| String testName = "test_device_capabilities_match_expectations";
|
| loadUrl(getHtmlTestFile(testName), PAGE_LOAD_TIMEOUT_S);
|
|
|