OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 | 3 |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <!-- | 8 <!-- |
9 Defines all the widgets that each of the types of JS modal dialogs | 9 Defines all the widgets that each of the types of JS modal dialogs |
10 need (alerts, confirms and prompts). When we inflate the layout | 10 need (alerts, confirms and prompts). When we inflate the layout |
(...skipping 17 matching lines...) Expand all Loading... |
28 android:singleLine="true" | 28 android:singleLine="true" |
29 android:visibility="gone" | 29 android:visibility="gone" |
30 android:contentDescription="@string/accessibility_js_modal_dialog_pr
ompt" | 30 android:contentDescription="@string/accessibility_js_modal_dialog_pr
ompt" |
31 /> | 31 /> |
32 | 32 |
33 <CheckBox android:id="@+id/suppress_js_modal_dialogs" | 33 <CheckBox android:id="@+id/suppress_js_modal_dialogs" |
34 android:textAppearance="?android:attr/textAppearanceSmall" | 34 android:textAppearance="?android:attr/textAppearanceSmall" |
35 android:layout_width="match_parent" | 35 android:layout_width="match_parent" |
36 android:layout_height="wrap_content" | 36 android:layout_height="wrap_content" |
37 android:text="@string/suppress_js_modal_dialogs" | 37 android:text="@string/suppress_js_modal_dialogs" |
38 android:layout_gravity="left" | 38 android:layout_gravity="start" |
39 /> | 39 /> |
40 | 40 |
41 </LinearLayout> | 41 </LinearLayout> |
42 </ScrollView> | 42 </ScrollView> |
OLD | NEW |