mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
DevTools - network - implement the secureConnectionStart property for the PerformanceTiming
https://github.com/MoonchildProductions/moebius/pull/116 ("/testing" and "/toolkit" in in the previous commit)
This commit is contained in:
parent
38e95f9e35
commit
54f2e6eafd
32 changed files with 263 additions and 13 deletions
|
|
@ -59,6 +59,7 @@
|
|||
|
||||
--timing-blocked-color: rgba(235, 83, 104, 0.8);
|
||||
--timing-dns-color: rgba(223, 128, 255, 0.8); /* pink */
|
||||
--timing-ssl-color: rgba(217, 102, 41, 0.8); /* orange */
|
||||
--timing-connect-color: rgba(217, 102, 41, 0.8); /* orange */
|
||||
--timing-send-color: rgba(70, 175, 227, 0.8); /* light blue */
|
||||
--timing-wait-color: rgba(94, 136, 176, 0.8); /* blue grey */
|
||||
|
|
@ -74,6 +75,7 @@
|
|||
|
||||
--timing-blocked-color: rgba(235, 83, 104, 0.8);
|
||||
--timing-dns-color: rgba(223, 128, 255, 0.8); /* pink */
|
||||
--timing-ssl-color: rgba(217, 102, 41, 0.8); /* orange */
|
||||
--timing-connect-color: rgba(217, 102, 41, 0.8); /* orange */
|
||||
--timing-send-color: rgba(0, 136, 204, 0.8); /* blue */
|
||||
--timing-wait-color: rgba(95, 136, 176, 0.8); /* blue grey */
|
||||
|
|
@ -505,6 +507,10 @@
|
|||
background-color: var(--timing-connect-color);
|
||||
}
|
||||
|
||||
.requests-menu-timings-box.ssl {
|
||||
background-color: var(--timing-ssl-color);
|
||||
}
|
||||
|
||||
.requests-menu-timings-box.send {
|
||||
background-color: var(--timing-send-color);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue