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

Side by Side Diff: third_party/WebKit/WebCore/inspector/front-end/debugger.html

Issue 43026: Move forked, DevToools-specific JS files out of third_party/WebKit... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | « third_party/WebKit/WebCore/inspector/front-end/debugger.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/WebKit/WebCore/inspector/front-end/debugger.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698