Mattias Wadman
Mattias Wadman

Reputation: 11425

Chrome developer tools header formats and view source

Below are two screenshots from the same version of Chrome. I would like to know when and why header names sometimes are displayed with different word capitalization and also when is the view source/view parsed toggle available? I've read the developer tools documentation which says nothing about it and tried to load pages in different ways. The only pattern i suspect is content compression, could that be it?

Update: nope seen both versions on sites using gzip

headers 1 headers 2

Upvotes: 7

Views: 2289

Answers (1)

Konrad Dzwinel
Konrad Dzwinel

Reputation: 37903

It seems that it happens only for resources served over HTTP2/SPDY (compare this image served over HTTP2 with the same image served over HTTP). There is an old Chrome bug that proves that HTTP2/SPDY headers are being handled differently. I reported this as a bug here.

Upvotes: 5

Related Questions