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

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

Issue 10834241: Change Font Settings Sample Extension to use an options page instead of browser action. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing Created 8 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 | Annotate | Revision Log
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>Font Settings Sample Extension</title> 5 <title>Font Settings Sample Extension</title>
6 <script src="./popup.js"></script> 6 <script src="options.js"></script>
7 <style> 7 <style>
8 .font-setting-container { 8 .font-setting-container {
9 -webkit-box-flex: 1; 9 -webkit-box-flex: 1;
10 display: -webkit-box; 10 display: -webkit-box;
11 } 11 }
12 12
13 .font-input-div { 13 .font-input-div {
14 -webkit-margin-end: 1em; 14 -webkit-margin-end: 1em;
15 margin-left: 10px; 15 margin-left: 10px;
16 } 16 }
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 <div class="font-input-div"><input type="text" id="minFontSize"></div> 105 <div class="font-input-div"><input type="text" id="minFontSize"></div>
106 <div id="minFontSample" style="font-family: standard; font-size: 1px;"> 106 <div id="minFontSample" style="font-family: standard; font-size: 1px;">
107 Lorem ipsum dolor sit amat. 107 Lorem ipsum dolor sit amat.
108 </div> 108 </div>
109 </div> 109 </div>
110 <button id="clearButton">Clear All Settings</button> 110 <button id="clearButton">Clear All Settings</button>
111 </div> 111 </div>
112 </div> 112 </div>
113 </body> 113 </body>
114 </html> 114 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698