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

Side by Side Diff: chrome/browser/resources/options/advanced_options.html

Issue 3017039: DOMUI prefs: Remove use of tables for layout on the Under the Hood pane. (Closed)
Patch Set: Switch from br to block-level elements Created 10 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div class="page hidden" id="advancedPage"> 1 <div class="page hidden" id="advancedPage">
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
5 <table class="option-control-table"> 5 <div>
6 <tr><td> 6 <div>
7 <button id="privacyContentSettingsButton" 7 <button id="privacyContentSettingsButton"
8 i18n-content="privacyContentSettingsButton"></button> 8 i18n-content="privacyContentSettingsButton"></button>
9 <button id="privacyClearDataButton" 9 <button id="privacyClearDataButton"
10 i18n-content="privacyClearDataButton"></button> 10 i18n-content="privacyClearDataButton"></button>
11 </td></tr> 11 </div>
12 <tr><td> 12 <div i18n-content="disableServices"></div>
13 <div class="section-text" 13 <div><a target="_blank" i18n-content="privacyLearnMoreLabel"
14 i18n-content="disableServices"></div> 14 i18n-values="href:privacyLearnMoreURL"></a></div>
15 <div id="privacyLearnMore"> 15 <label><input id="alternateErrorPagesEnabled"
16 <a target="_blank" i18n-content="privacyLearnMoreLabel" 16 pref="alternate_error_pages.enabled" type="checkbox"><span
17 i18n-values="href:privacyLearnMoreURL"></a></div> 17 i18n-content="linkDoctorPref"></span></label>
18 </td></tr> 18 <label><input id="searchSuggestEnabled"
19 <tr id="linkDoctorCheckbox"> 19 pref="search.suggest_enabled" type="checkbox"><span
20 <td class="option-name"><label><input id="alternateErrorPagesEnabled" 20 i18n-content="suggestPref"></span></label>
21 pref="alternate_error_pages.enabled" type="checkbox"><span 21 <label><input id="dnsPrefetchingEnabled"
22 i18n-content="linkDoctorPref"></span></label></td> 22 pref="dns_prefetching.enabled" type="checkbox"><span
23 </tr> 23 i18n-content="networkDNSPrefetchEnabledDescription"></span>
24 <tr id="suggestCheckbox"> 24 </label>
25 <td class="option-name"><label><input id="searchSuggestEnabled" 25 <label><input id="safeBrowsingEnabled"
26 pref="search.suggest_enabled" type="checkbox"><span 26 pref="safebrowsing.enabled" type="checkbox"><span
27 i18n-content="suggestPref"></span></label></td> 27 i18n-content="safeBrowsingEnableProtection"></span></label>
28 </tr>
29 <tr id="dnsPrefetchingCheckbox">
30 <td class="option-name"><label><input id="dnsPrefetchingEnabled"
31 pref="dns_prefetching.enabled" type="checkbox"><span
32 i18n-content="networkDNSPrefetchEnabledDescription"></span></label>
33 </td>
34 </tr>
35 <tr id="safeBrowsingCheckbox">
36 <td class="option-name"><label><input id="safeBrowsingEnabled"
37 pref="safebrowsing.enabled" type="checkbox"><span
38 i18n-content="safeBrowsingEnableProtection"></span></label></td>
39 </tr>
40 <if expr="pp_ifdef('_google_chrome')"> 28 <if expr="pp_ifdef('_google_chrome')">
41 <tr id="metricsReportingCheckbox"> 29 <label><input id="metricsReportingEnabled"
42 <td class="option-name"><label><input id="metricsReportingEnabled" 30 pref="user_experience_metrics.reporting_enabled" type="checkbox">
43 pref="user_experience_metrics.reporting_enabled" type="checkbox"> 31 <span i18n-content="enableLogging"></span></label>
44 <span i18n-content="enableLogging"></span></label></td>
45 </tr>
46 </if> 32 </if>
47 </table> 33 </div>
48 </section> 34 </section>
49 <if expr="not pp_ifdef('chromeos')"> 35 <if expr="not pp_ifdef('chromeos')">
50 <section> 36 <section>
51 <h3 i18n-content="advancedSectionTitleNetwork"></h3> 37 <h3 i18n-content="advancedSectionTitleNetwork"></h3>
52 <table class="option-control-table"> 38 <div>
53 <tr><td> 39 <div i18n-content="proxiesLabel"></div>
54 <div class="section-text" 40 <button id="proxiesConfigureButton"
55 i18n-content="proxiesLabel"></div> 41 i18n-content="proxiesConfigureButton"></button>
56 </td></tr> 42 </div>
57 <tr><td>
58 <button id="proxiesConfigureButton"
59 i18n-content="proxiesConfigureButton"></button>
60 </td></tr>
61 </table>
62 </section> 43 </section>
63 </if> 44 </if>
64 <section> 45 <section>
65 <h3 i18n-content="advancedSectionTitleTranslate"></h3> 46 <h3 i18n-content="advancedSectionTitleTranslate"></h3>
66 <table class="option-control-table"> 47 <div>
67 <tr id="enableTranslateCheckbox"> 48 <label><input id="enableTranslate"
68 <td class="option-name"><label><input id="enableTranslate" 49 pref="translate.enabled" type="checkbox"><span
69 pref="translate.enabled" type="checkbox"><span 50 i18n-content="translateEnableTranslate"></span></label>
70 i18n-content="translateEnableTranslate"></span></label></td> 51 </div>
71 </tr>
72 </table>
73 </section> 52 </section>
74 <section> 53 <section>
75 <h3 i18n-content="downloadLocationGroupName"></h3> 54 <h3 i18n-content="downloadLocationGroupName"></h3>
76 <table class="option-control-table"> 55 <div>
77 <tr><td> 56 <div i18n-content="downloadLocationBrowseTitle"></div>
78 <div class="section_text" 57 <div><input id="downloadLocationPath" type="text" size="60" disabled></div >
79 i18n-content="downloadLocationBrowseTitle"></div> 58 <div><button id="downloadLocationBrowseButton"
80 <input id="downloadLocationPath" type="text" size="60" disabled> 59 i18n-content="downloadLocationBrowseButton"></button></div>
81 <button id="downloadLocationBrowseButton" 60 <label><input id="promptForDownload"
82 i18n-content="downloadLocationBrowseButton"></button> 61 pref="download.prompt_for_download" type="checkbox"><span
83 </td></tr> 62 i18n-content="downloadLocationAskForSaveLocation"></span></label>
84 <tr id="promptForDownloadCheckbox"> 63 <div i18n-content="autoOpenFileTypesInfo"></div>
85 <td class="option-name"><label><input id="promptForDownload" 64 <div><button id="autoOpenFileTypesResetToDefault"
86 pref="download.prompt_for_download" type="checkbox"><span 65 i18n-content="autoOpenFileTypesResetToDefault"></button></div>
87 i18n-content="downloadLocationAskForSaveLocation"></span></label> 66 </div>
88 </td>
89 </tr>
90 <tr><td>
91 <div class="section-text"
92 i18n-content="autoOpenFileTypesInfo"></div>
93 <button id="autoOpenFileTypesResetToDefault"
94 i18n-content="autoOpenFileTypesResetToDefault"></button>
95 </td></tr>
96 </table>
97 </section> 67 </section>
98 <section> 68 <section>
99 <h3 i18n-content="advancedSectionTitleContent"></h3> 69 <h3 i18n-content="advancedSectionTitleContent"></h3>
100 <table class="option-control-table"> 70 <div>
101 <if expr="os == 'darwin'"> 71 <if expr="os == 'darwin'">
102 <tr id="tabsToLinksCheckbox"> 72 <label><input id="tabsToLinksPref"
103 <td class="option-name"><label><input id="tabsToLinksPref" 73 pref="webkit.webprefs.tabs_to_links" type="checkbox"><span
104 pref="webkit.webprefs.tabs_to_links" type="checkbox"><span 74 i18n-content="tabsToLinksPref"></span></label>
105 i18n-content="tabsToLinksPref"></span></label></td>
106 </tr>
107 </if> 75 </if>
108 <tr id="fontSettingsConfigureFontsOnlyButton"><td> 76 <div><button id="fontSettingsConfigureFontsOnlyButton"
109 <button id="fontSettingsConfigureFontsOnlyButton" 77 i18n-content="fontSettingsConfigureFontsOnlyButton"></button></div>
110 i18n-content="fontSettingsConfigureFontsOnlyButton"></button> 78 </div>
111 </td></tr>
112 </table>
113 </section> 79 </section>
114 <if expr="not pp_ifdef('chromeos')"> 80 <if expr="not pp_ifdef('chromeos')">
115 <section> 81 <section>
116 <h3 i18n-content="advancedSectionTitleSecurity"></h3> 82 <h3 i18n-content="advancedSectionTitleSecurity"></h3>
117 <table class="option-control-table"> 83 <div>
118 <tr><td> 84 <div i18n-content="certificatesLabel"></div>
119 <div class="section_text" 85 <div><button id="certificatesManageButton"
120 i18n-content="certificatesLabel"></div> 86 i18n-content="certificatesManageButton"></button></div>
121 <button id="certificatesManageButton"
122 i18n-content="certificatesManageButton"></button>
123 </td></tr>
124 </if> 87 </if>
125 <if expr="os == 'win32'"> 88 <if expr="os == 'win32'">
126 <!-- Configure these options for manual handling on windows --> 89 <!-- Configure these options for manual handling on windows -->
127 <tr id="sslCheckRevocationCheckbox"> 90 <label><input id="sslCheckRevocation"
128 <td class="option-name"><label><input id="sslCheckRevocation" 91 type="checkbox"><span i18n-content="sslCheckRevocation"></span>
129 type="checkbox"><span i18n-content="sslCheckRevocation"></span> 92 </label>
130 </label></td> 93 <label><input id="sslUseSSL2"
131 </tr> 94 type="checkbox"><span i18n-content="sslUseSSL2"></span>
132 <tr id="sslUseSSL2Checkbox"> 95 </label>
133 <td class="option-name"><label><input id="sslUseSSL2"
134 type="checkbox"><span i18n-content="sslUseSSL2"></span>
135 </label></td>
136 </tr>
137 </if> 96 </if>
138 <if expr="not pp_ifdef('chromeos') and (os == 'linux2' or os.find('bsd') != -1)" > 97 <if expr="not pp_ifdef('chromeos') and (os == 'linux2' or os.find('bsd') != -1)" >
139 <!-- Configure these options for Linux/BSD as preference keys --> 98 <!-- Configure these options for Linux/BSD as preference keys -->
140 <tr id="sslCheckRevocationCheckbox"> 99 <label><input id="sslCheckRevocation"
141 <td class="option-name"><label><input id="sslCheckRevocation" 100 pref="ssl.rev_checking.enabled" type="checkbox"><span
142 pref="ssl.rev_checking.enabled" type="checkbox"><span 101 i18n-content="sslCheckRevocation"></span></label>
143 i18n-content="sslCheckRevocation"></span></label></td> 102 <label><input id="sslUseSSL2"
144 </tr> 103 pref="ssl.ssl2.enabled" type="checkbox"><span
145 <tr id="sslUseSSL2Checkbox"> 104 i18n-content="sslUseSSL2"></span></label>
146 <td class="option-name"><label><input id="sslUseSSL2" 105 <label><input id="sslUseSSL3"
147 pref="ssl.ssl2.enabled" type="checkbox"><spa 106 pref="ssl.ssl3.enabled" type="checkbox"><span
148 i18n-content="sslUseSSL2"></span></label></td> 107 i18n-content="sslUseSSL3"></span></label>
149 </tr> 108 <label><input id="sslUseTLS1"
150 <tr id="sslUseSSL3Checkbox"> 109 pref="ssl.tls1.enabled" type="checkbox"><span
151 <td class="option-name"><label><input id="sslUseSSL3" 110 i18n-content="sslUseTLS1"></span></label>
152 pref="ssl.ssl3.enabled" type="checkbox"><span
153 i18n-content="sslUseSSL3"></span></label></td>
154 </tr>
155 <tr id="sslUseTLS1Checkbox">
156 <td class="option-name"><label><input id="sslUseTLS1"
157 pref="ssl.tls1.enabled" type="checkbox"><span
158 i18n-content="sslUseTLS1"></span></label></td>
159 </tr>
160 </if> 111 </if>
161 <if expr="not pp_ifdef('chromeos')"> 112 <if expr="not pp_ifdef('chromeos')">
162 </table> 113 </div>
163 </section> 114 </section>
164 </if> 115 </if>
165 </div> 116 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698