OLD | NEW |
---|---|
1 <style> | 1 <style> |
2 #import-view-command-line, | 2 #import-view-command-line, |
3 #import-view-user-comments { | 3 #import-view-user-comments { |
4 /* Wrap long lines inside of PREs */ | 4 /* Wrap long lines inside of PREs */ |
5 white-space: pre-wrap; | 5 white-space: pre-wrap; |
6 } | 6 } |
7 | 7 |
8 #import-view-load-status-text { | 8 #import-view-load-status-text { |
9 /* Wrap long lines inside of PREs */ | 9 /* Wrap long lines inside of PREs */ |
10 white-space: pre-wrap; | 10 white-space: pre-wrap; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
57 </tr> | 57 </tr> |
58 <tr> | 58 <tr> |
59 <th>OS type</th> | 59 <th>OS type</th> |
60 <td jscontent="constants.clientInfo.os_type"></td> | 60 <td jscontent="constants.clientInfo.os_type"></td> |
61 </tr> | 61 </tr> |
62 <tr> | 62 <tr> |
63 <th>Command line</th> | 63 <th>Command line</th> |
64 <td><pre jscontent="constants.clientInfo.command_line"></pre></td> | 64 <td><pre jscontent="constants.clientInfo.command_line"></pre></td> |
65 </tr> | 65 </tr> |
66 <tr> | 66 <tr> |
67 <th>Active Field Trial Groups</th> | |
68 <td><p jsselect="constants.activeFieldTrialGroups" jscontent="$this"></p>< /td> | |
xunjieli
2014/10/23 21:32:39
Not sure if this is okay, but I used p tag here to
mmenke
2014/10/23 21:46:45
nit: Can use lines less than 80-chars be doing:
<
mmenke
2014/10/23 21:46:45
That's fine - how long is the list? I was thinkin
xunjieli
2014/10/23 22:18:38
I have 9. With space, the list looks a little cram
| |
69 </tr> | |
70 <tr> | |
67 <th>User comments</th> | 71 <th>User comments</th> |
68 <td> | 72 <td> |
69 <pre id=import-view-user-comments jscontent="userComments" | 73 <pre id=import-view-user-comments jscontent="userComments" |
70 jsdisplay="typeof userComments != 'undefined'"></pre> | 74 jsdisplay="typeof userComments != 'undefined'"></pre> |
71 </td> | 75 </td> |
72 </tr> | 76 </tr> |
73 </table> | 77 </table> |
74 </div> | 78 </div> |
75 </div> | 79 </div> |
OLD | NEW |