Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1178)

Unified Diff: android_webview/tools/automated_ui_tests/java/res/layout/edittext_webview.xml

Issue 2154023002: adding action mode tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/tools/automated_ui_tests/java/res/layout/edittext_webview.xml
diff --git a/android_webview/tools/system_webview_shell/apk/res/layout/activity_webview.xml b/android_webview/tools/automated_ui_tests/java/res/layout/edittext_webview.xml
similarity index 59%
copy from android_webview/tools/system_webview_shell/apk/res/layout/activity_webview.xml
copy to android_webview/tools/automated_ui_tests/java/res/layout/edittext_webview.xml
index 547bb2c4ef7a69a40db660123dce43b6fec7da51..5f5a7e7d1b61eb895ef7208d2fa9fa2157039730 100644
--- a/android_webview/tools/system_webview_shell/apk/res/layout/activity_webview.xml
+++ b/android_webview/tools/automated_ui_tests/java/res/layout/edittext_webview.xml
@@ -4,9 +4,8 @@
found in the LICENSE file.
-->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
@@ -14,5 +13,12 @@
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
- android:layout_height="match_parent" />
-</LinearLayout>
+ android:layout_height="280dp" />
+ <EditText
+ android:id="@+id/edittext"
+ android:inputType="text"
+ android:layout_below="@+id/webview"
+ android:layout_width="match_parent"
+ android:layout_height="60dp" />
+</RelativeLayout>
+

Powered by Google App Engine
This is Rietveld 408576698