ericduran / chromeHAR

HAR viewer that mimics (or at least tries really hard to) Chromes network tab
https://ericduran.github.io/chromeHAR
MIT License
495 stars 133 forks source link

Many issues in Firefox #9

Open vincentbernat opened 11 years ago

vincentbernat commented 11 years ago

Hi!

ChromeHAR exhibits many problems in Firefox. The layout is mangled and some elements are missing. See the following screenshot:

screenshot-2013-04-20--14:31:40

ericduran commented 11 years ago

Yep, this is because the webkit code only uses the -webkit prefix.

This is what happens when you take code from webkit ;-) Ha

I'll fix all the prefix.

cvan commented 10 years ago

I ran the CSS through a script that added -moz- prefixes wherever there were -webkit- ones:

Before

After

LOL not much of a difference. Any ideas?

ericduran commented 10 years ago

So I just pushed a commit to fix some of this.

It looks a little better but not perfect.

I'll continue making fixes for this. FYI: I added a generic.css file where I'm overwriting the webkit specific stuff by hand.

Sadly it's a bit difficult to script since chrome/webkit is using non w3c standard features (ex. webkit-mask-image)