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

Side by Side Diff: chrome/browser/resources/net_internals/index.html

Issue 1036001: Add a DOMUI datasource that will handle the net-internals page.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: address mbelshe comments Created 10 years, 9 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
« no previous file with comments | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>Under construction...</title>
4 <script>
5
6 // TODO(eroman): This is all temporary...
7
8 function sendTestMessageToBrowser() {
9 log("Sent message to browser");
10 chrome.send('testMessage', [String((new Date()).toLocaleTimeString())]);
11 }
12
13 function log(msg) {
14 var l = document.getElementById('log');
15 l.appendChild(document.createTextNode(msg + "\n"));
16 }
17
18 </script>
19 </head>
20
21
22 <body>
23 <p>This is a work in progress. See http://crbug.com/37421 for details.</p>
24
25 <input onclick="sendTestMessageToBrowser()"
26 value="SendTestMessageToBrowser"
27 type=button />
28
29 <pre id=log></pre>
30
31 </body>
32 </html>
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698