Viewing profile — bgrins
bgrins
HN member- Joined
- Fri, Jun 12, 2009, 1:37 PM UTC
- HN karma
- 124
- Public activity
- 51 items
- HN profile
- View on Hacker News ↗
About bgrins
No profile information was provided.
Recent public activity
-
comment
Comment #39675225
Good luck! FYI, there's a hidden developer menu that's handy for browser developers to change the number of iterations, select specific tests, etc: https://browserbench.org/Speedom…
-
comment
Comment #34749058
I worked on this project - Web Components had a lot to do with it. It's true they weren't feature complete in Firefox when we started the project (notably missing Shadow DOM) - but…
-
comment
Comment #21589350
There are pros and cons to using web tech for the application UI. To be clear, the old XBL code was already using JS/DOM, so the most obvious pro in this case was that it didn't re…
-
comment
Comment #8287828
> you now need to right click in the console and tick "Log request and response bodies" every single time Yes, seems like there could be a pref for that. Filed a bug: https://bugzi…
-
comment
Comment #8075558
The eyedropper is using a panel with a call to openPopupAtScreen to open it ( http://dxr.mozilla.org/mozilla-central/source/browser/devtoo... ). I'm not sure exactly in what ways t…
-
comment
Comment #7669137
> Thanks for the link. What about IndexDB, Web SQL and Local Storage? Not yet, but a storage inspector panel is being worked on: https://bugzilla.mozilla.org/show_bug.cgi?id=970517…
-
comment
Comment #7467746
A storage inspector is not part of the tools yet. Some of the functionality for this has landed, but the frontend is still being worked on here: https://bugzilla.mozilla.org/show_b…
-
comment
Comment #7467644
I've filed https://bugzilla.mozilla.org/show_bug.cgi?id=987877 for adding a Copy XPath menu item in the inspector
-
comment
Comment #7467426
Thanks for the info. What are you wanting to do with xpath? The console supports the $x function, like $x("//body"). Also, HTML node drag and drop is on the radar here: https://bug…
-
comment
Comment #7319746
It's mostly JavaScript. Take a look at https://wiki.mozilla.org/DevTools/GetInvolved and https://wiki.mozilla.org/DevTools/Hacking for more information
-
comment
Comment #7319689
The contrast for the selected node in the markup tree is being updated here: https://bugzilla.mozilla.org/show_bug.cgi?id=968315 .
-
comment
Comment #7319671
This feature is being worked on, and is close to landing: https://bugzilla.mozilla.org/show_bug.cgi?id=663778
-
comment
Comment #7318749
Yes, the current dark theme does not have high enough contrast. There is a bug opened to switch to higher contrast colors in the dark theme here: https://bugzilla.mozilla.org/show_…
-
comment
Comment #7219319
There is also a work in progress to add a better interface for inspecting storage (including cookies): https://bugzilla.mozilla.org/show_bug.cgi?id=926449
-
comment
Comment #7180010
> At least in current Nightly, you can hit the Esc. key, to pop up the console regardless of the panel you're currently using This split console feature landed in 28 (so it is movi…
-
comment
Comment #6741600
Audio processing works, but certain codecs do not come bundled with it. It should be possible to configure it with --enable-libmp3lame if you had the source alongside and had every…
-
comment
Comment #6740121
Thanks! It will be interesting to see how much it will speed up as JS runtimes get faster, and as we are able to apply additional optimizations with Emscripten. In particular, asm.…
-
comment
Comment #6673175
> Here are the mock ups: https://people.mozilla.org/~shorlander/mockups/devTools/ux-r... Regarding theming, here is a bug that can be followed for updates: https://bugzilla.mozilla…
-
comment
Comment #6521079
Here is the bug for the "Edit as HTML" feature: https://bugzilla.mozilla.org/show_bug.cgi?id=895561 .
-
comment
Comment #5542297
Here is a way to fix this: https://gist.github.com/bgrins/5108712 . When you call `log` it will preserve the line number. Here is a demo: http://jsfiddle.net/bgrins/MZWtG/ .
-
comment
Comment #4614965
Remote debugging is so useful: http://www.igvita.com/slides/2012/devtools-tips-and-tricks/#... . It is painful to try and make and test changes on mobile devices without developer …
-
comment
Comment #4203604
If you end up adding IE support, check out this hack to get multi-stop gradients in IE for the hue slider: https://github.com/bgrins/spectrum/blob/master/spectrum.css#...
-
comment
Comment #3030518
Neat project, I just got done doing the 10K Apart contest and this would have saved me a lot of resizing when testing different widths!
- story
-
comment
Comment #2995987
http://www.w3.org/TR/CSS2/box.html#margin-properties When margin top or bottom is a percentage, it refers to the width, not height, of the containing block. If the parent is 100% w…