Viewing profile — heycam
heycam
HN member- Joined
- Tue, May 21, 2013, 1:17 PM UTC
- HN karma
- 138
- Public activity
- 25 items
- HN profile
- View on Hacker News ↗
About heycam
Recent public activity
-
comment
Comment #23935109
Support for font-variation-settings has been on by default since Firefox 62, which was released almost two years ago. Are you using a Firefox older than that?
-
comment
Comment #23017002
Nice. For comparison, here is Mozilla's implementation in Rust, which is integrated into Firefox: https://github.com/mozilla/neqo
-
comment
Comment #21645257
There's a great series of posts going into more detail about Pernosco's design and advantages that is linked to in the final paragraph: https://pernos.co/about/
-
comment
Comment #20851132
On https://codetribute.mozilla.org/ you can find mentored Mozilla project bugs to work on (not just Firefox) indexed by language.
-
comment
Comment #20659355
And this is landing very soon in Firefox, behind a pref. https://twitter.com/svoisen/status/1159322370122768384
-
comment
Comment #19435832
It's probably referring to this bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1089326
-
comment
Comment #15283700
Firefox and Servo use 1/60 as the smallest layout unit for the same reason. http://searchfox.org/mozilla-central/source/gfx/src/AppUnits... http://doc.servo.org/app_units/ https://…
-
comment
Comment #14979974
Unfortunately for me, the fact that rr can't run on Ryzen CPUs is a dealbreaker. :( https://github.com/mozilla/rr/issues/2034
-
comment
Comment #10277096
Cheers!
-
comment
Comment #10275857
There are minor benefits without ABP. For each page/iframe that is created, we can avoid running the CSS cascade (and share those data structures) for the UA style sheets. It's sav…
-
comment
Comment #10213408
Interesting that Firefox takes the decomposed Hangul and renders it as whole syllables, while Chrome shows them as the sequence of individual jamos. http://mcc.id.au/temp/hangul.pn…
-
comment
Comment #9809740
I just did some poking around, and it looks like uBlock does insert a couple of elements into the document. I'm not sure if this is how all style-based blocking is done in uBlock, …
-
comment
Comment #9809621
Thank you!
-
comment
Comment #9809522
I can't see where on that page it talks about using style sheets. Last week I searched the µBlock sources for use of the nsIStyleSheetService, which is Gecko's internal interface f…
-
comment
Comment #9809462
µBlock does not use the same technique of creating a style sheet and inserting it into all loaded documents, so the type of sharing done as part of this work does not help µBlock.
-
comment
Comment #8589357
This kind of underline painting behaviour is proposed in http://dev.w3.org/csswg/css-text-decor-3/#text-decoration-sk... as text-decoration-skip:ink. Not yet implemented anywhere t…
-
comment
Comment #8411073
Firefox will warn when you try to submit the form. Filed https://bugzilla.mozilla.org/show_bug.cgi?id=1077880 .
-
comment
Comment #8377101
The equivalent rules for Mozilla code: https://developer.mozilla.org/en-US/docs/Using_CXX_in_Mozill...
-
comment
Comment #7855738
Browsers have a very limited set of properties that they allow in :visited rules, and display isn't one of them.
-
comment
Comment #7691013
As pornel pointed out, CSS Variables are really custom properties that cascade and inherit just like regular properties. Since "$" is used by CSS preprocessors for variables that w…
-
comment
Comment #7690248
Please note that the final syntax for CSS Variables changed recently, so in Firefox 31 and later, where the feature is enabled by default, you declare variables like this: :root { …
-
comment
Comment #7490506
That's the Foundation. The three current Corporation board members are listed here: http://www.mozilla.org/en-US/foundation/moco/
-
comment
Comment #7490500
The bylaws of the Corporation are more relevant: http://www.mozilla.org/en-US/legal/bylaws.html
-
comment
Comment #7200455
Try http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/lates... instead. Not sure why the Aurora landing page is not using the right link.
-
comment
Comment #5743409
Yeah, I just started today on adding the ability (internally) for style declarations to expose colours in the syntax they were originally specified in (bug 731271), which the dev t…