diff options
author | pdr@chromium.org <pdr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-10 19:55:44 +0000 |
---|---|---|
committer | pdr@chromium.org <pdr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-10 19:55:44 +0000 |
commit | f06d45b092393356b6613e9e049e4e7e200be9d8 (patch) | |
tree | 0f0f9ce30bcc74399e98564a9e2f4be6ec9569be | |
parent | c9238ccbdbc8f97f26037b33f3995efa8b5c52bd (diff) | |
download | chromium_src-f06d45b092393356b6613e9e049e4e7e200be9d8.zip chromium_src-f06d45b092393356b6613e9e049e4e7e200be9d8.tar.gz chromium_src-f06d45b092393356b6613e9e049e4e7e200be9d8.tar.bz2 |
Suppress tests after crbug.com/224317
These test failures appear to be caused by the images loading even though setLoadsImagesAutomatically is false. The full failure is visible here:
http://build.chromium.org/p/chromium.webkit/builders/Android%20Tests%20%28dbg%29/builds/9587/steps/androidwebview_instrumentation_tests/logs/stdio
This would be expected as data uri images would load without hitting the network.
BUG=248249
R=benm@chromium.org
Review URL: https://codereview.chromium.org/16404010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205283 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java index 96e0f7c..33c6cd5 100644 --- a/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java +++ b/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java @@ -1369,8 +1369,10 @@ public class AwSettingsTest extends AwTestBase { // setLoadsImagesAutomatically to false doesn't prevent images already // contained in the memory cache to be displayed. The cache is shared among // all views, so the image can be put there by another view. + // Fixme (crbug.com/248249): Needs investigation after crbug.com/224317 @Feature({"AndroidWebView", "Preferences"}) @SmallTest + @DisabledTest public void testLoadsImagesAutomaticallyWithCachedImage() throws Throwable { ViewPair views = createViews(); AwSettings settings0 = getAwSettingsOnUiThread(views.getContents0()); @@ -1439,7 +1441,9 @@ public class AwSettingsTest extends AwTestBase { // The test verifies that after changing the LoadsImagesAutomatically // setting value from false to true previously skipped images are // automatically loaded. + // Fixme (crbug.com/248249): Needs investigation after crbug.com/224317 @SmallTest + @DisabledTest @Feature({"AndroidWebView", "Preferences"}) public void testLoadsImagesAutomaticallyNoPageReload() throws Throwable { final TestAwContentsClient contentClient = new TestAwContentsClient(); @@ -1473,7 +1477,9 @@ public class AwSettingsTest extends AwTestBase { assertEquals(ImagePageGenerator.IMAGE_LOADED_STRING, getTitleOnUiThread(awContents)); } + // Fixme (crbug.com/248249): Needs investigation after crbug.com/224317 @SmallTest + @DisabledTest @Feature({"AndroidWebView", "Preferences"}) public void testLoadsImagesAutomaticallyWithTwoViews() throws Throwable { ViewPair views = createViews(); |