| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 .network-timing-table td { | 103 .network-timing-table td { |
| 104 padding: 2px 0; | 104 padding: 2px 0; |
| 105 } | 105 } |
| 106 | 106 |
| 107 .network-timing-table td.caution { | 107 .network-timing-table td.caution { |
| 108 font-weight: bold; | 108 font-weight: bold; |
| 109 color: rgb(255, 128, 0); | 109 color: rgb(255, 128, 0); |
| 110 padding: 2px 0; | 110 padding: 2px 0; |
| 111 } | 111 } |
| 112 | 112 |
| 113 .network-timing-table .footnote { |
| 114 border-top: 1px solid #eee; |
| 115 } |
| 116 |
| 113 .network-timing-row { | 117 .network-timing-row { |
| 114 position: relative; | 118 position: relative; |
| 115 height: 15px; | 119 height: 15px; |
| 116 } | 120 } |
| 117 | 121 |
| 118 .network-timing-bar { | 122 .network-timing-bar { |
| 119 position: absolute; | 123 position: absolute; |
| 120 min-width: 1px; | 124 min-width: 1px; |
| 121 top: 0; | 125 top: 0; |
| 122 bottom: 0; | 126 bottom: 0; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 189 |
| 186 .request-view.json { | 190 .request-view.json { |
| 187 padding: 5px; | 191 padding: 5px; |
| 188 } | 192 } |
| 189 | 193 |
| 190 .request-view.html iframe { | 194 .request-view.html iframe { |
| 191 width: 100%; | 195 width: 100%; |
| 192 height: 100%; | 196 height: 100%; |
| 193 position: absolute; | 197 position: absolute; |
| 194 } | 198 } |
| OLD | NEW |