Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: desktop-options.html

Issue 29714596: Issue 6440 - Disable common textarea features to improve performance (Closed)
Patch Set: Created March 5, 2018, 4:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 - This file is part of Adblock Plus <https://adblockplus.org/>, 3 - This file is part of Adblock Plus <https://adblockplus.org/>,
4 - Copyright (C) 2006-present eyeo GmbH 4 - Copyright (C) 2006-present eyeo GmbH
5 - 5 -
6 - Adblock Plus is free software: you can redistribute it and/or modify 6 - Adblock Plus is free software: you can redistribute it and/or modify
7 - it under the terms of the GNU General Public License version 3 as 7 - it under the terms of the GNU General Public License version 3 as
8 - published by the Free Software Foundation. 8 - published by the Free Software Foundation.
9 - 9 -
10 - Adblock Plus is distributed in the hope that it will be useful, 10 - Adblock Plus is distributed in the hope that it will be useful,
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 <div id="custom-filters"> 294 <div id="custom-filters">
295 <h3 class="i18n_options_customFilters_widget_title"></h3> 295 <h3 class="i18n_options_customFilters_widget_title"></h3>
296 <div id="empty-custom-filters"> 296 <div id="empty-custom-filters">
297 <p class="i18n_options_customFilters_tip"></p> 297 <p class="i18n_options_customFilters_tip"></p>
298 <button class="i18n_options_customFilters_start primary" data-acti on="edit-custom-filters"> 298 <button class="i18n_options_customFilters_start primary" data-acti on="edit-custom-filters">
299 </button> 299 </button>
300 <p> 300 <p>
301 <a class="i18n_options_customFilters_learn" id="link-filters" ta rget="_blank"></a> 301 <a class="i18n_options_customFilters_learn" id="link-filters" ta rget="_blank"></a>
302 </p> 302 </p>
303 </div> 303 </div>
304 <textarea id="custom-filters-raw" rows="15"></textarea> 304 <textarea id="custom-filters-raw" rows="15" spellcheck="false"
305 autocapitalize="off" autocomplete="off" autocorrect="off"> </textarea>
Thomas Greiner 2018/03/05 16:40:57 According to https://developer.mozilla.org/en-US/d
a.giammarchi 2018/03/05 16:54:43 but it doesn't hurt having it in, right?
305 <div class="side-controls"> 306 <div class="side-controls">
306 <button id="custom-filters-edit" class="i18n_options_customFilter_ edit secondary" data-action="edit-custom-filters"> 307 <button id="custom-filters-edit" class="i18n_options_customFilter_ edit secondary" data-action="edit-custom-filters">
307 </button> 308 </button>
308 <div class="side-controls" id="custom-filters-raw-controls"> 309 <div class="side-controls" id="custom-filters-raw-controls">
309 <button class="i18n_options_customFilter_cancel secondary" data- action="cancel-custom-filters"></button> 310 <button class="i18n_options_customFilter_cancel secondary" data- action="cancel-custom-filters"></button>
310 <button class="i18n_options_customFilter_save primary" data-acti on="save-custom-filters"></button> 311 <button class="i18n_options_customFilter_save primary" data-acti on="save-custom-filters"></button>
311 </div> 312 </div>
312 </div> 313 </div>
313 </div> 314 </div>
314 </section> 315 </section>
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 </div> 431 </div>
431 <!-- Notification --> 432 <!-- Notification -->
432 <div id="notification" aria-hidden="true" aria-live="polite"> 433 <div id="notification" aria-hidden="true" aria-live="polite">
433 <strong id="notification-text"></strong> 434 <strong id="notification-text"></strong>
434 <button class="icon close secondary" data-action="hide-notification"> 435 <button class="icon close secondary" data-action="hide-notification">
435 <span class="i18n_options_notification_hide sr-only"></span> 436 <span class="i18n_options_notification_hide sr-only"></span>
436 </button> 437 </button>
437 </div> 438 </div>
438 </body> 439 </body>
439 </html> 440 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld