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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fontSettings/options.html

Issue 2534693002: Reduce usage of webkit prefixes in extension examples (Closed)
Patch Set: rebase Created 3 years, 10 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Advanced Font Settings</title> 5 <title>Advanced Font Settings</title>
6 <script src="js/cr.js"></script> 6 <script src="js/cr.js"></script>
7 <script src="js/cr/ui.js"></script> 7 <script src="js/cr/ui.js"></script>
8 <script src="js/cr/ui/overlay.js"></script> 8 <script src="js/cr/ui/overlay.js"></script>
9 <script src="slider.js"></script> 9 <script src="slider.js"></script>
10 <script src="pending_changes.js"></script> 10 <script src="pending_changes.js"></script>
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 <div class="action-area"> 184 <div class="action-area">
185 <div class="button-strip"> 185 <div class="button-strip">
186 <button id="reset-all-cancel">Cancel</button> 186 <button id="reset-all-cancel">Cancel</button>
187 <button id="reset-all-ok">Reset</button> 187 <button id="reset-all-ok">Reset</button>
188 </div> 188 </div>
189 </div> 189 </div>
190 </div> 190 </div>
191 </div> 191 </div>
192 </div> 192 </div>
193 <div class="page"> 193 <div class="page">
194 <header style="-webkit-transform: translateX(0px);"> 194 <header style="transform: translateX(0px);">
195 <h1>Advanced Font Settings</h1> 195 <h1>Advanced Font Settings</h1>
196 </header> 196 </header>
197 <section> 197 <section>
198 <h3 class="script-header">Script</h3> 198 <h3 class="script-header">Script</h3>
199 <div class="font-settings-row"> 199 <div class="font-settings-row">
200 <select style="width: 200px" id="scriptList"></select> 200 <select style="width: 200px" id="scriptList"></select>
201 </div> 201 </div>
202 </section> 202 </section>
203 <section> 203 <section>
204 <h3>Proportional fonts</h3> 204 <h3>Proportional fonts</h3>
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 <button id="reset-this-script-button"> 293 <button id="reset-this-script-button">
294 Reset settings for this script 294 Reset settings for this script
295 </button> 295 </button>
296 <button id="reset-all-button"> 296 <button id="reset-all-button">
297 Reset all settings 297 Reset all settings
298 </button> 298 </button>
299 </section> 299 </section>
300 </div> 300 </div>
301 </body> 301 </body>
302 </html> 302 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698