blob: 661d9de613631a7a0d9b8382a59097c3b5d283fa [file] [log] [blame]
John Reck63bb6872010-12-01 19:29:32 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<PreferenceScreen
18 xmlns:android="http://schemas.android.com/apk/res/android" >
19
20 <!-- The javascript console is enabled by default when the user has
21 also enabled debug mode by navigating to about:debug. -->
22 <CheckBoxPreference
Teng-Hui Zhu930ea222011-02-16 11:22:21 -080023 android:key="enable_visual_indicator"
24 android:defaultValue="false"
25 android:title="@string/pref_development_visual_indicator" />
26
27 <CheckBoxPreference
John Reck63bb6872010-12-01 19:29:32 -080028 android:key="javascript_console"
29 android:defaultValue="true"
30 android:title="@string/pref_development_error_console" />
31
32 <CheckBoxPreference
33 android:key="small_screen"
34 android:defaultValue="false"
35 android:title="@string/pref_development_single_column_rendering" />
36
37 <CheckBoxPreference
38 android:key="wide_viewport"
39 android:defaultValue="true"
40 android:title="@string/pref_development_viewport" />
41
42 <CheckBoxPreference
43 android:key="normal_layout"
44 android:defaultValue="false"
45 android:title="@string/pref_development_normal_rendering" />
46
47 <CheckBoxPreference
48 android:key="enable_tracing"
49 android:defaultValue="false"
50 android:title="@string/pref_development_trace" />
51
52 <CheckBoxPreference
53 android:key="enable_light_touch"
54 android:defaultValue="false"
55 android:title="Enable light touch" />
56
57 <CheckBoxPreference
58 android:key="enable_nav_dump"
59 android:defaultValue="false"
60 android:title="@string/pref_development_nav_dump" />
61
62 <EditTextPreference
63 android:key="js_engine_flags"
64 android:title="@string/js_engine_flags"
65 android:singleLine="true" />
66
67</PreferenceScreen>