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

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

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 /**
2 * Style for javascript debugger. See debugger.html.
3 */
4
5 html,body {
6 margin: 0px;
7 padding: 0px;
8 height: 100%;
9 }
10 #output {
11 font-family: monospace;
12 background-color: #ffffff;
13 min-height: 100%;
14 }
15 #outer {
16 height: 100%;
17 width: 100%;
18 white-space: pre-wrap;
19 padding: 0px 0px 24px 0px;
20 }
21 #command-line {
22 bottom: 0px;
23 /* not quite sure why this 5px is necessary */
24 right: 5px;
25 left: 0px;
26 position: fixed;
27 padding: 0px;
28 margin: 0px;
29 }
30 #command-line-text {
31 height: 20px;
32 display: block;
33 width: 100%;
34 font-family: monospace;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698