am 6dbba3ea: am 53bd1e8f: Add WSVGA to the supported ScreenConfiguration list
Merge commit '6dbba3ea69ae9d0951088c620cc9243044111359' into gingerbread-plus-aosp
* commit '6dbba3ea69ae9d0951088c620cc9243044111359':
Add WSVGA to the supported ScreenConfiguration list
diff --git a/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java b/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
index c03600a..f038c4b 100644
--- a/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
+++ b/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
@@ -179,6 +179,7 @@
* HVGA | medium (141-190) | normal
* WVGA | high (191-250) | normal
* FWVGA | high (191-250) | normal
+ * WSVGA | high (191-250) | large
* VGA | medium (141-190) | large
* WVGA | medium (141-190) | large
@@ -199,6 +200,8 @@
new ScreenConfiguration(640, 480, Density.HIGH, Configuration.SCREENLAYOUT_SIZE_NORMAL, true),
// FWVGA | high (191-250) | normal
new ScreenConfiguration(864, 480, Density.HIGH, Configuration.SCREENLAYOUT_SIZE_NORMAL),
+ // WSVGA | high (191-250) | large
+ new ScreenConfiguration(1024, 600, Density.HIGH, Configuration.SCREENLAYOUT_SIZE_LARGE),
// VGA | medium (141-190) | large
new ScreenConfiguration(640, 480, Density.MEDIUM, Configuration.SCREENLAYOUT_SIZE_LARGE),