Simon Lindholm

Results 99 comments of Simon Lindholm

I suspect that's because the addon sets the `image.animation_mode` pref in about:config to `none`, and doesn't revert it on uninstall because Firefox 57 doesn't run uninstall code for legacy addons....

Thanks for asking. Life caught up with me, and I haven't had any time to look at this for the last two months... If you're interested in helping out, there's...

Not much has happened since the last update. I may start to get time for this addon soon, though.

That's odd... Does it happen for all pages, or just for some? There have been some reports of Firefox accessibility options breaking things, and similarly with CSP, although I wouldn't...

Couldn't reproduce with those exact steps, but since this report I've been noticing some cases of disappearing images too. They show up when pressing Ctrl+A to select all, though, which...

Eh, fine with me, looks like a well-meaning addon. I meant to create a similar minimal addon myself as a stopgap ages ago, but never got around to it. Maybe...

Hm, having to use a patched pycparser sounds a bit unfortunate. (I don't think they want to accent non-standard language extensions.) Any chance that the decomps can use some macro...

> But it messes up the codegen when the address isn't specified, so that's no good for permuting. PERM_PRETEND and PERM_IGNORE could be used, potentially: ```c PERM_IGNORE(unsigned int OSBusClock :...

> Or maybe permuter itself could do that transformation. I pushed a commit that does essentially this: now `unsigned int OSBusClock = FIXEDADDR(0x800000F8);` gets expanded to `unsigned int OSBusClock :...

We have perm_condition: ` """Change if(x) into if(x != 0), or vice versa. Also handles for/while/do-while."""` Would be nice to extend that!