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

Side by Side Diff: chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.html

Issue 10175008: Improving the process model extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Syncing to the latest tree after a week away. Created 8 years, 7 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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="popup.js"></script> 3 <script src="popup.js"></script>
4 <style> 4 <style>
5 body { 5 body {
6 overflow: hidden; 6 overflow: hidden;
7 margin: 0px; 7 margin: 0px;
8 padding: 0px; 8 padding: 0px;
9 background: white; 9 background: white;
10 } 10 }
11 11
12 div:first-child { 12 div:first-child {
13 margin-top: 0px; 13 margin-top: 0px;
14 } 14 }
15 15
16 div, td { 16 div, td {
17 padding: 1px 3px; 17 padding: 1px 3px;
18 font-family: sans-serif; 18 font-family: sans-serif;
19 font-size: 10pt; 19 font-size: 10pt;
20 margin-top: 1px; 20 margin-top: 1px;
21 } 21 }
22 </style> 22 </style>
23 </head> 23 </head>
24 <body> 24 <body>
25 <div id="title"><b>Process Monitor</b></div> 25 <div id="title"><b>Process Monitor</b></div>
26 <div id="process-list"><i>Loading...</i></div> 26 <div id="process-list"><i>Loading...</i></div>
27 <div id="buttons">
28 <input type="button" value="End Process" id="killProcess" />
29 </div>
30 </div>
27 </body> 31 </body>
28 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698