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> |
| 69 <span jsselect="constants.activeFieldTrialGroups" jscontent="$this + ' '
"></span> |
| 70 </td> |
| 71 </tr> |
| 72 <tr> |
67 <th>User comments</th> | 73 <th>User comments</th> |
68 <td> | 74 <td> |
69 <pre id=import-view-user-comments jscontent="userComments" | 75 <pre id=import-view-user-comments jscontent="userComments" |
70 jsdisplay="typeof userComments != 'undefined'"></pre> | 76 jsdisplay="typeof userComments != 'undefined'"></pre> |
71 </td> | 77 </td> |
72 </tr> | 78 </tr> |
73 </table> | 79 </table> |
74 </div> | 80 </div> |
75 </div> | 81 </div> |
OLD | NEW |