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

Side by Side Diff: chrome/tools/test/reference_build/chrome_linux/resources/inspector/debugger.html

Issue 177049: On Linux, move the passing of filedescriptors to a dedicated socketpair(). (Closed)
Patch Set: Removed *.d files from reference build Created 11 years, 3 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
(Empty)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <!--
5 The UI for the javascript debugger window.
6 -->
7 <head>
8 <title>JavaScript Debugger</title>
9 <meta http-equiv="Content-Type" content="text/html; charset=UTF8" />
10 <link rel="stylesheet" href="debugger.css" type="text/css" />
11 <script type="text/javascript" src="DebuggerConsole.js"></script>
12 <script type="text/javascript" src="DebuggerIPC.js"></script>
13 <script type="text/javascript" src="DebuggerShell.js"></script>
14 </head>
15
16 <body onload="onLoad();">
17
18 <table id='outer'>
19 <tr>
20 <td valign='bottom' id='output'>Chrome JavaScript Debugger<br />Type 'he lp' for a list of commands.<br /></td>
21 </tr>
22 </table>
23
24 <div id='command-line'>
25 <!-- TODO(erikkay) - use addEventListener instead -->
26 <input id='command-line-text'
27 type="text" />
28 </div>
29
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698