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

Side by Side Diff: Source/devtools/front_end/networkPanel.css

Issue 515583005: Add ServiceWorker timing information on the popup panel in DevTools's Network tab (1/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 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
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 .network-timing-bar.blocking, 125 .network-timing-bar.blocking,
126 .network-timing-bar.proxy { 126 .network-timing-bar.proxy {
127 background-color: rgb(205, 205, 205); 127 background-color: rgb(205, 205, 205);
128 } 128 }
129 129
130 .network-timing-bar.dns { 130 .network-timing-bar.dns {
131 background-color: rgb(31, 124, 131); 131 background-color: rgb(31, 124, 131);
132 } 132 }
133 133
134 .network-timing-bar.connecting, 134 .network-timing-bar.connecting,
135 .network-timing-bar.ssl { 135 .network-timing-bar.ssl,
136 .network-timing-bar.serviceworker {
136 background-color: rgb(229, 130, 38); 137 background-color: rgb(229, 130, 38);
137 } 138 }
138 139
139 .network-timing-bar.sending { 140 .network-timing-bar.sending {
140 background-color: rgb(95, 221, 95); 141 background-color: rgb(95, 221, 95);
141 } 142 }
142 143
143 .network-timing-bar.waiting { 144 .network-timing-bar.waiting {
144 background-color: rgb(95, 221, 95); 145 background-color: rgb(95, 221, 95);
145 } 146 }
146 147
147 .network-timing-bar.receiving { 148 .network-timing-bar.receiving {
148 background-color: rgb(65, 137, 215); 149 background-color: rgb(65, 137, 215);
149 } 150 }
150 151
151 .resource-timing-view.visible { 152 .resource-timing-view.visible {
152 display: block; 153 display: block;
153 } 154 }
154 155
155 .panel.network .split-view { 156 .panel.network .split-view {
156 flex: auto; 157 flex: auto;
157 position: relative; 158 position: relative;
158 } 159 }
159 160
160 .network-filters-header { 161 .network-filters-header {
161 flex: 0 0 23px; 162 flex: 0 0 23px;
162 padding-right: 4px; 163 padding-right: 4px;
163 } 164 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/RequestTimingView.js ('k') | Source/devtools/front_end/sdk/NetworkManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698