Hacker News new | past | comments | ask | show | jobs | submit login
Firefox 22 released (mozilla.org)
247 points by Techasura on June 26, 2013 | hide | past | favorite | 152 comments



Not sure linking to the FTP mirror is all that useful. Here are the release notes: https://www.mozilla.org/en-US/firefox/22.0/releasenotes/

Highlights: WebRTC, asm.js, flexbox, and web notifications are present and enabled by default.


Don't forget ES6 fat arrows! That and right-dockable dev tools excites me more than they probably should.

https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Rel...


The devtools are indeed dockable on the right now in FF 22, but not responsive yet (so when little horizontal real estate is available, the tools will look and feel very cramped).

The upcoming versions address this issue (in the end, it's all just CSS; for example: [0]).

[0] http://dxr.mozilla.org/mozilla-central/source/browser/themes...


Also, clipboard data access. With Opera's switch to chromium, Firefox was the last browser without programmatic access to the clipboard[0] (though as usual MSIE has a non-standard implementation) so you had to listen for the paste event and post-process whatever garbage had been dumped in your paste area (and of course couldn't access high-level media types)

[0] Opera, as far as I remember, has neither clipboard access nor a "paste" event, the POS.


So can a website read a users clipboard, and if yes, how can we disable this "feature"?


> So can a website read a users clipboard

Yes and no, the website can access clipboard data specifically when you're pasting as a user-triggered operation (C-v/M-v or "Paste" from a contextual menu) (that is the clipboard data is only accessible from the `paste` event).

This allows an application to access alternative representations (the clipboard can store multiple representations of the same data e.g. text and html and image and whatever, and the application can then pick the most appropriate — or all of them) and to pre-process clipboard data before inserting it programmatically. Very useful with e.g. RTE. Arbitrary clipboard access most definitely isn't allowed.

See http://www.w3.org/TR/clipboard-apis/#pasting-html-and-multi-... for security and privacy considerations.

> if yes, how can we disable this "feature"?

In firefox, probably by going to about:config and setting `dom.event.clipboardevents.enabled` to `false`. In webkit and MSIE (which have had the feature for ages) I have no idea.


In Firefox, it seems like you can only catch Clipboarddata on input boxes still

    document.body.addEventListener("paste", function(e){
        console.log("paste event fired") 
    })
In Chrome, this will fire when you paste, in Firefox it will not.


It might be restricted to focusable/editable components, e.g. a `contenteditable` block should work.


Yep, you're correct

http://jsbin.com/odupog/1/edit

Either way, should alleviate some of the privacy concerns, as you can only get ClipboardData from elements where "paste" has a visible effect.


No, not unless you initiate a paste operation manually (literally, as in by hitting ctrl-v or etc.)

This is one of the ways that pasting images from your clipboard into, say, an image hosting site can work.

I had a difficult time finding fuller explanations of the capabilities - mostly because there isn't a standard API across browsers yet - but here[1] are the relevant Safari docs.

There's also a working draft[2] from the W3C for a standardized API.

[1] http://developer.apple.com/library/mac/documentation/AppleAp...

[2] http://www.w3.org/TR/clipboard-apis/


Thanks, it's just brought back memories of IE6 where a website could arbitrarily read user clipboard without notice


What?! Are all those companies still using IE6 (and, consequently, holding back progress for the rest of us) aware of this massive security hole?


Hey, it's a feature. We can "fund" the time spent on IE6 workarounds by selling data obtained from paste buffers.


Companies using IE 6 have many more security problems than clipboard access.


At this point of time IE6 is a wide open door, something as trivial as reading your paste isn't that big of a deal in comparison.


Are there any good web applications based on WebRTC yet?


Tell me what you think of this one: http://www.sharefest.me/


Check out LiveNinja http://www.liveninja.com which is based on WebRTC for the video calls


Group video chat: https://talky.io/


I absolutely love your UI, and the game idea while waiting.


or build your own!

www.tokbox.com

disclaimer: BD @ tokbox


Oh weird. I remember trying out FlexBox three years ago and having it work in FF. Does this just mean they dropped the -moz- prefix requirement?


It's a bit more complex: there are actually 2 flexbox specs with different syntaxes, one from 2009 (now deprecated) and one from 2011[0]. Firefox has supported the old syntax circa Firefox 2 (Safari from 3.1, Chrome from the first version).

This is about the new syntax and current CR.

[0] http://css-tricks.com/old-flexbox-and-new-flexbox/


Firefox never supported the old flexbox. It has XUL boxes (dating back to 1998 or so), which the old flexbox was syntactically, and somewhat behaviorally based on. But they predate those drafts by 10 years.


> Firefox never supported the old flexbox.

I'm not sure why you're asserting that when you're completely wrong. Not only did Firefox support the old flexbox, it still does as of Firefox 22: [0] still works and uses the old (and prefixed) flexbox syntax, and said old (and prefixed) syntax remains documented on MDN with a note that it's deprecated[1]

[0] http://www.the-haystack.com/2010/01/23/css3-flexbox-part-1/

[1] https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-box-fl...


My point is that the syntax in question is used for XUL boxes, and has been for going on 15 years. It's not used for any sort of implementation of the old flexbox draft.

The old flexbox draft is similar to XUL boxes in some ways, and quite different in other ways. Trying to use XUL boxes and expecting the old-flexbox behavior as a result will land you in trouble, as happens with depressing regularity when people use "display: -moz-box".

The MDN documentation is sadly wrong, because it ignores the fact that the properties _look_ similar but have totally different behavior. Thank you for pointing that out; I'll make sure it gets fixed.


Note to self: never engage in a public argument about Firefox internals with bzbarsky.


The OdinMonkey engine performance is impressive. The Lua VM benchmark[1] jumped from 110 points in Firefox 21 to 318 points in Firefox 22! Not to mention poor performance of Chrome.

Next, have a look at the Epic Citadel[2], which runs very smoothly in Firefox 22. Well done!

[1] http://kripken.github.io/lua.vm.js/lua.vm.js.html [2] http://www.unrealengine.com/html5/


It's a bit unfair to mention Chrome performing poorly on these. Both are asm.js, which OdinMonkey is optimised for, V8 not.

That said, I'm very excited about asm.js (using it, in fact) and the performance in FF 22 blows me away as well. The V8 team appears to be working on asm.js optimisations, so soon we can have a fair contest :)

The best thing about asm.js is that the optimisations are really optional, unless your application is actually CPU-bound. The Unreal Engine probably is, to some degree. A simple 2D game like the one I'm working on certainly isn't. Not seeing it run any faster with FF 22, it's already smooth in older versions.


> It's a bit unfair to mention Chrome performing poorly on these. Both are asm.js, which OdinMonkey is optimised for, V8 not.

Actually Chrome has been optimizing for compiled C++ for a long time - Google even added Mandreel code to the Octane benchmark - and for asm.js specifically (which is a particular type of compiled C++) in recent months, as you can track here

http://arewefastyet.com/#machine=11&view=breakdown&suite=asm... http://arewefastyet.com/#machine=11&view=breakdown&suite=asm...


It's a bit odd that arewefastyet.com stops showing results for JavaScriptCore when switching to the asm.js view.


JSC is also missing on Mandreel in Octane. Maybe the JSC shell lacks typed arrays?


From what I can tell, JavaScriptCore has had typed array support since at least as far back as December 2011 (http://trac.webkit.org/r103637, a random change in JavaScriptCore involving typed arrays).


If memory serves, JSC does not have typed arrays. The developer of Impact had to add them manually.


Safari does have typed arrays though. I guess added in the browser, not in JSC itself?


Nope, they work just fine from the `jsc` shell.


Thanks for the info. Then I am really curious why awfy does not manage to run them properly. Perhaps it does not build JSC correctly somehow? I think that code is here

https://github.com/dvander/arewefastyet/blob/master/driver/b...

edit: btw, is there a simple way to build just the JSC shell on Linux? I can't find one.


That looks like everything's being built and run in the correct way for OS X. Is there an easy way to run the benchmarks from that repository against my own WebKit working copy without having to set up all of the server-side support that the main README talks about? If I can run things locally I might be able to spot what's going awry with the asm.js tests for JSC.

I'm not familiar with building just JSC on Linux, but last time I looked in to it the only way to build JSC was as part of building all of WebKit.


Yeah, basically each benchmark there has a python script to run it. For example in benchmarks/asmjs-apps it is possible to run

python harness.py [SHELL_NAME]

and it runs all the benchmarks in that directory using that shell.

Regarding building, I've tried to build all of the Qt port on Linux (what the online guides mention), but always fail in the dependencies. Perhaps I'll try the gtk port.


Thanks for the pointer on running the tests. I noticed two big issues:

1. Some of the tests use shell functions like "read" that jsc doesn't provide. This is easy enough to address.

2. I was mistaken about the quality of the typed array support in JavaScriptCore. While the interpreter has knowledge of typed arrays, the actual implementation that's used when running in-browser lives in WebCore rather than in JavaScriptCore. When running in the shell only a bare minimum typed array implementation, primarily intended for JSC-only regression tests, is available. This trips up some tests since the implementation is much less complete than the one in WebCore.


Hmm, I am guessing the minimum implementation is also less performant (if it's just meant for regression tests)? So probably it would be unfair to measure on it.


I'm not sure about that. I'll follow up with some of my colleagues to see why typed arrays are in such an state.

Am I correct in assuming that if JavaScriptCore starts successfully executing the tests, it'll automatically start showing up on the relevant part of arewefastyet.com?


Thanks, that information would be very helpful.

I am not sure about automatically showing up, but that would be my guess. I can ask dvander (who runs awfy) for more details if that would be useful. In any case probably it is very easy to change (disable/enable).


On my laptop, I got 419 points for Firefox 22 and 120 points for Chrome 28.

Of course, the Lua VM test is compiled to asm.js, so of course Firefox does really well right now. Exciting nonetheless - this opens so many possibilities.


The Lua VM benchmark seems to be compiled to asm.js though, how does chrome fare when not targeting asmjs?


• Chrome 29.0.1546.0 canary: 91 points

• Firefox nightly 25.0a1 (2013-06-26): 403 points

MBP i7 2.2Ghz


It would probably be slower with emscripten in non-asm.js mode (asm.js format is more careful to not change types at runtime, etc.), based on benchmarks I've tested in the past. Have not tested on this particular one, though, if you check it out please let us know.


Oh yeah - short function syntax goes into the wild!

    let square = x => x * x
Time to move over to stalking the Chrome devs...


Not to mention that |this| is lexically bound in the case of fat arrow functions. No more ".bind(this)" or "let self = this;" everywhere!

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...


Yay. Sometimes I wish we still did release parties.


Can this syntax be also used with the other browsers? i.e. IE and Chrome?


Not yet, but it is in the ECMAScript 6 draft, so it will most likely be adopted eventually.


TypeScript supports this syntax. I believe they are trying to align with ECMAScript 6 as much as possible.


The nice thing about TypeScript is that it compiles to EcmaScript 3, so you can target older browsers and still use these goodies.

Also, TypeScript 0.9 is released, which includes niceties such as generics and type info overloading based on constant values passed in function parameters.

It's pretty slick, if only it could output code optimized for Google Closure's advanced mode, for tree-shaking awesomeness.


If you're a fan of Firefox I recommend using Aurora:

   http://www.mozilla.org/en-US/firefox/aurora/
Aurora is basically the beta of Firefox. It seems to get incremental updates more regularly than Firefox. It very occasionally has issues with compatibility with plugins (usually when a version number is bumped) but I can't recall any stability issues in the few years I've been using it.


There is Firefox beta channel, aurora is a bit less stable. Usually aurora still gets uncooked features pushed in, while beta only receives preffed features, unpreffed stable features or bug fixes


Yeah, in my experience Aurora is occasional work-interrupting pain, whereas beta is blissful:

http://www.mozilla.org/en-US/firefox/beta/

It doesn't update super frequently during the 6-week release cycle. Maybe once a week tops, I think? Hard to be sure, as I restart FF every few days anyway.


Before Aurora there's also http://nightly.mozilla.org/ one update/day. I've run it since shortly after they moved to a six week cycle (I ran Aurora initially) and have never had work loss. Only once in that period have I had to downgrade to Aurora for a day (the nightly build seemed broken, crashed on startup). Overall I'm very happy with getting features and speedups ~18 weeks before general release.

BTW, they must have more or less completely solved the add-ons version compatibility problem that was initially a big pain when they moved to the six week cycle; I haven't noticed any disabled or broken add-ons in a very long time.


A few years back they introduced a "restartless addon" api, so addons didn't use XUL (firefox's internal language) directly. This allows them to be both enabled/disabled while firefox is running, and not need to be rewritten every version. Look for the "restartless" tag on the addon website.

The six-week cycle probably helped as well, since there is less changes between versions; not to mention improved auto-updating.


A small nitpicky correction: XUL is a markup language, but one can certainly write Firefox UI using HTML or XHTML as well. The logic is written JavaScript.

For example, the markup view itself from the Firefox Developer Tools is written in HTML [0] and JS [1]. Other tools like the Network Monitor use XUL.

[0] http://dxr.mozilla.org/mozilla-central/source/browser/devtoo... [1] http://dxr.mozilla.org/mozilla-central/source/browser/devtoo...


At the time I was trying Aurora, I kept hitting bugs with FF sync, ended up having to kill my profile a few times.

Also I just happened to occasionally hit plugin/add-on/etc bugs that would require me to kill and downgrade FF, losing ~10 minutes of work and my train of thought. It didn't take long for this to push me to the Beta channel.

Glad to hear Aurora is generally solid for you, though. Maybe I should give it another try.


Mozilla updates Firefox Beta once a week, but there is debate about twice weekly (Monday/Thursday) updates.


I've felt like Firefox has been pretty light on features in its releases since it switched to rapid release, but this one is packed with stuff. Awesome!

It's becoming more and more rare for me to have to switch to Chrome to get a website to work correctly/acceptably, and I love it! Great job by the Mozilla team


Which websites work better in Chrome? I use Safari these days, but when I used Firefox full time last year I didn't see any broken-ness.


The only broken-ness I can remember seeing for a long time in Firefox is in those demos and other little projects that pop up here where the developer forgot that browsers other than Chrome exist (or, are using Chrome only features).


I am for all intents and purposes a massive Mozilla fanboy, however I regularly switch to Chromium to use any nontrivial 2D graphics js (e.g. the Python plop profiler).

Not sure why, but Firefox definitely seems to have a weak spot around 2d (SVG?) performance


I submitted three (minor) patches for improving the performance of a couple of filters in Mozilla's SVG code. Those (minor) optimisations should be in this release.

I hope to do a lot more. I too, like you, am a Mozilla fanboy.

Unfortunately, in the last few months, I have a lot of pressure at my day-job (a few sudden departures). Nevertheless, I did contribute when I could spare the time and I urge you to do likewise. If there are enough of us, then there's always someone helping them out. It's a massive project and needs all the hands that kind developers are willing to spare.


If you (or anyone else with time...) want to be a true hero, figure out why font changes for text on canvas is a magnitude or more slower on Firefox than Chrome.

At least on the versions I've tested...

I have an app that places a few hundred text labels on a canvas, and on Chrome I can do that smoothly in a single callback. For firefox I had to use a hack with a queue that is processed a few items at a time with setTimeout() to prevent it from stalling the UI for many seconds... Even so, the experience is still worse on Firefox.


I'm happy to link into this if you point me to a testcase that shows the slowness. If it takes a few tens of seconds so much the better: easier to profile.


I meant _look_ into this, of course...


There have been many large performance improvements to the SVG implementation over the last few months. Check out the latest http://nightly.mozilla.org/ and if you still see issues then please do file SVG bug reports at https://bugzilla.mozilla.org/enter_bug.cgi?product=Core&comp... and I'll take a look.


I've had some issues with internal sites I use at work that are auto-generated Microsoft stuff. And for a while I couldn't get the new Google Maps to load every time on Firefox. It seems to be have been fixed at some point since it runs fine in Nightly now though.


Flexbox. It's finally almost here. I cannot tell you how long I've waited for this to be supported by default in all of these browsers... as soon as Safari 7 is released, us developer sites will actually be able to make the switch. I honestly think wrangling the hacky current layout solutions is 25% or more of my time spent with CSS on a project, so hopefully we'll be able to build things much more quickly.

Happy day.


As a Firefox mobile user, this one is the nicest one of them all for me:

"Plain text files displayed within Firefox will now word-wrap"

It was a pain to scroll sideways.


Release notes might be a more useful link: https://www.mozilla.org/en-US/firefox/22.0/releasenotes/


Wondering about the Web Speech API and speech input...Chrome does a great job, but doesn't seem to allow hooking up to 3rd party recognizers like Nuance or even something local.

Anyone know how Mozilla is going to handle this? Are they going to use Google's recognizers in the cloud?


tnx mate :)


My feature, progress bars for downloads in the OS X Dock, made Firefox 22! Hope you all like it, and be sure to report any bugs.

https://bugzilla.mozilla.org/show_bug.cgi?id=548763


There were rumors about third-party cookies being disabled by default in v22. I downloaded it and found this not to be true. Can anyone shed some light on when Mozilla plans on doing this? http://www.pcworld.com/article/2038956/mozilla-postpones-def...


We're busy investigating possible unintended side-effects. So no precise calendar yet.


Thanks for the update! We're working to have expected functionality when third party cookies being disabled. I'll keep an eye on when it's planned to be released.


Is there a config flag to enable this?


The option has been in firefox as far back as I can remember. It's in the Preferences, under Privacy; you'll need to select "Use custom settings for history". I've never noticed any breakage, and I assume in-part because iOS and Safari set it as their default a few years back.


On my home PC , the third party cookie blocking was available since I was on the beta channel. The new stable version 22 does not include the option.

Edit : It's officially off. So much for the privacy concerns ..

http://www.computerworld.com/s/article/9240218/Mozilla_again...


If you want to enjoy the asm.js optimizations, see this Unreal Engine demo: http://www.unrealengine.com/html5/

Firefox is awesome.


It randomly segfaults on Arch with no error report and a trace says it comes from libgobject.

So I went up the stack, every one except nightly is segfaulting.

Guess I'm on nightly for a while!


I'm using arch and it works fine


Well, you are on Arch, so that is the default version you should use. :-D


Arch has never been that bleeding edge.


It's actually a pain in the butt to run anything but release firefox on Arch, because you either need to use a 3rd party repo or some AUR wrapper to auto-update the aur package.

That, and Nightly is kind of painful because its a 60MB update daily. I'm probably going to be skipping a lot of updates on it =P


> because you either need to use a 3rd party repo or some AUR wrapper to auto-update the aur package.

The other option is to `chown` the package directory, and Nightly will handle auto-updating. I only run on a 1 Mbit connection and I hardly notice when Nightly chooses to download the update on my Arch box, even while I'm actively browsing.

> its a 60MB update daily

The entire binary is ~32-33MB...I've never received an update that large.


Name : firefox-nightly

Version : 25.0a1-1

Description : Standalone web browser from mozilla.org, nightly build

Architecture : x86_64

URL : http://www.mozilla.org/projects/firefox

Licenses : MPL GPL LGPL

Groups : None

Provides : None

Depends On : alsa-lib libxt libnotify mime-types nss gtk2 sqlite dbus-glib

Optional Deps : None

Required By : None

Optional For : None

Conflicts With : None

Replaces : None

Installed Size : 71562.00 KiB

Packager : Unknown Packager

Build Date : Wed 26 Jun 2013 08:31:12 AM EDT

Install Date : Wed 26 Jun 2013 08:31:51 AM EDT

Install Reason : Explicitly installed

Install Script : No

Validated By : None

The AUR nightly package on Arch is 71mb. It installs:

firefox-nightly /opt/firefox-25.0a1/ firefox-nightly /opt/firefox-25.0a1/Throbber-small.gif firefox-nightly /opt/firefox-25.0a1/application.ini firefox-nightly /opt/firefox-25.0a1/browser/ firefox-nightly /opt/firefox-25.0a1/browser/blocklist.xml firefox-nightly /opt/firefox-25.0a1/browser/chrome.manifest firefox-nightly /opt/firefox-25.0a1/browser/chrome/ firefox-nightly /opt/firefox-25.0a1/browser/chrome/icons/ firefox-nightly /opt/firefox-25.0a1/browser/chrome/icons/default/ firefox-nightly /opt/firefox-25.0a1/browser/chrome/icons/default/default16.png firefox-nightly /opt/firefox-25.0a1/browser/chrome/icons/default/default32.png firefox-nightly /opt/firefox-25.0a1/browser/chrome/icons/default/default48.png firefox-nightly /opt/firefox-25.0a1/browser/components/ firefox-nightly /opt/firefox-25.0a1/browser/components/components.manifest firefox-nightly /opt/firefox-25.0a1/browser/components/libbrowsercomps.so firefox-nightly /opt/firefox-25.0a1/browser/crashreporter-override.ini firefox-nightly /opt/firefox-25.0a1/browser/extensions/ firefox-nightly /opt/firefox-25.0a1/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/ firefox-nightly /opt/firefox-25.0a1/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/icon.png firefox-nightly /opt/firefox-25.0a1/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf firefox-nightly /opt/firefox-25.0a1/browser/icons/ firefox-nightly /opt/firefox-25.0a1/browser/icons/mozicon128.png firefox-nightly /opt/firefox-25.0a1/browser/omni.ja firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/ firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/amazondotcom.xml firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/bing.xml firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/eBay.xml firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/google.xml firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/twitter.xml firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/wikipedia.xml firefox-nightly /opt/firefox-25.0a1/browser/searchplugins/yahoo.xml firefox-nightly /opt/firefox-25.0a1/chrome.manifest firefox-nightly /opt/firefox-25.0a1/components/ firefox-nightly /opt/firefox-25.0a1/components/components.manifest firefox-nightly /opt/firefox-25.0a1/components/libdbusservice.so firefox-nightly /opt/firefox-25.0a1/components/libmozgnome.so firefox-nightly /opt/firefox-25.0a1/crashreporter firefox-nightly /opt/firefox-25.0a1/crashreporter.ini firefox-nightly /opt/firefox-25.0a1/defaults/ firefox-nightly /opt/firefox-25.0a1/defaults/pref/ firefox-nightly /opt/firefox-25.0a1/defaults/pref/channel-prefs.js firefox-nightly /opt/firefox-25.0a1/dependentlibs.list firefox-nightly /opt/firefox-25.0a1/dictionaries/ firefox-nightly /opt/firefox-25.0a1/dictionaries/en-US.aff firefox-nightly /opt/firefox-25.0a1/dictionaries/en-US.dic firefox-nightly /opt/firefox-25.0a1/firefox firefox-nightly /opt/firefox-25.0a1/firefox-bin firefox-nightly /opt/firefox-25.0a1/icons/ firefox-nightly /opt/firefox-25.0a1/icons/updater.png firefox-nightly /opt/firefox-25.0a1/libfreebl3.chk firefox-nightly /opt/firefox-25.0a1/libfreebl3.so firefox-nightly /opt/firefox-25.0a1/libmozalloc.so firefox-nightly /opt/firefox-25.0a1/libmozsqlite3.so firefox-nightly /opt/firefox-25.0a1/libnspr4.so firefox-nightly /opt/firefox-25.0a1/libnss3.so firefox-nightly /opt/firefox-25.0a1/libnssckbi.so firefox-nightly /opt/firefox-25.0a1/libnssdbm3.chk firefox-nightly /opt/firefox-25.0a1/libnssdbm3.so firefox-nightly /opt/firefox-25.0a1/libnssutil3.so firefox-nightly /opt/firefox-25.0a1/libplc4.so firefox-nightly /opt/firefox-25.0a1/libplds4.so firefox-nightly /opt/firefox-25.0a1/libsmime3.so firefox-nightly /opt/firefox-25.0a1/libsoftokn3.chk firefox-nightly /opt/firefox-25.0a1/libsoftokn3.so firefox-nightly /opt/firefox-25.0a1/libssl3.so firefox-nightly /opt/firefox-25.0a1/libxul.so firefox-nightly /opt/firefox-25.0a1/mozilla-xremote-client firefox-nightly /opt/firefox-25.0a1/omni.ja firefox-nightly /opt/firefox-25.0a1/platform.ini firefox-nightly /opt/firefox-25.0a1/plugin-container firefox-nightly /opt/firefox-25.0a1/precomplete firefox-nightly /opt/firefox-25.0a1/removed-files firefox-nightly /opt/firefox-25.0a1/run-mozilla.sh firefox-nightly /opt/firefox-25.0a1/update-settings.ini firefox-nightly /opt/firefox-25.0a1/updater firefox-nightly /opt/firefox-25.0a1/updater.ini firefox-nightly /opt/firefox-25.0a1/webapprt-stub firefox-nightly /opt/firefox-25.0a1/webapprt/ firefox-nightly /opt/firefox-25.0a1/webapprt/omni.ja firefox-nightly /opt/firefox-25.0a1/webapprt/webapprt.ini firefox-nightly /usr/ firefox-nightly /usr/bin/ firefox-nightly /usr/bin/firefox-nightly firefox-nightly /usr/share/ firefox-nightly /usr/share/applications/ firefox-nightly /usr/share/applications/firefox-nightly-safe.desktop firefox-nightly /usr/share/applications/firefox-nightly.desktop firefox-nightly /usr/share/pixmaps/ firefox-nightly /usr/share/pixmaps/firefox-nightly-icon.png

And since it doesn't do incremental patch diffs in the pkgbuild it is a 70mb update every time. I'll try chowning /opt/firefox.


>That, and Nightly is kind of painful because its a 60MB update daily. I'm probably going to be skipping a lot of updates on it =P

Is that a Linux/Arch specific problem? On OSX it'll download partial updates at just a few MB -- at least so long as you really do keep it updated nightly.


Well if you use the system package manager, and it doesn't support and use differential updates, then you have to download the whole package from your distribution's repository.



It seems snappier, but I'm not sure I like the new text-scaling on high-DPI displays.

Basically I just felt like I lost a lot of screen real-estate when surfing the news, like I was back in 1356x768 country.

There needs to be some toggles which can be disabled or some other middle ground here.


You can zoom each affected site out from the View > Zoom menu. And the add-ons NoSquint (https://addons.mozilla.org/en-US/firefox/addon/nosquint/) or Default FullZoom Level (https://addons.mozilla.org/en-US/firefox/addon/default-fullz...) let you set the default zoom for all sites.


Some devs didn't know this, so since it's relevant...

Firefox 21 and 22 support streaming MP4 in HTML5.


Only on Windows 7 and 8. Linux Gstreamer support just landed in nightly, preffed off. https://mobile.twitter.com/FirefoxNightly/status/34910062265...

OS X is a bit more complicated due to needing to poke at Quicktime for the codecs.


Didn't know that about nix, nice. I forgot to mention that about it being only supported on windows for now.

Still waiting on Opera to make a move for mp4...especially with the promises that H.265 make in regards to reduced file sizes with great qualities.

Although I know mp4 is patent encumbered, it's too prevalent to ignore (thanks to Apple and Microsoft products).


Looking forward to 25% of my automated functional tests failing for the next week!


Why? Surely your code isn’t that fragile?


er, no... /shifty_eyes

I'm being melodramatic is all. The Selenium FF driver lags a little behind Firefox releases (totally understandable).

Not a problem on my actual test boxes as I control the FF version on those, but it will lead to a week or so of devs (with FF auto-update set) complaining that tests are breaking locally. (Despite the fact that this situation and its remedy has been explained to them repeatedly.)

It is possible that S2.33 will work fine with FF22, making all this moot. And it's just a passing annoyance. I have nothing but love for both applications.


Ah, Selenium, that makes more sense. Thanks for the update.


Out of curiosity, does this solve the memory issues caused by bad websites? Example, I have open three sites and my firefox memory usage is constantly increasing.

maps.google.com with route determined. Hackers News, this story.

and the offending site, cycletrader.com where I chose a random ad from the front page that had more than one photo. All I did was cycle through the photos and leave the tab open.

Internet Explorer to the same sites does not even come close to the memory usage. In the time it took me to write this I have seen firefox go from 235m to 1.2g memory and IE stayed steady at 100m


This is so much better in Windows on a retina display


The expectation of this release has been a fun ride for me. We were using long-live HTTP requests in our product for pushing data to the browser, a very elegant method but only implemented by Mozilla. Now were transitioning to websockets which aren't nearly as nice for this use, but I'm enjoying putting the newer, better-supported method in place on front- and back-ends.


Some users are going to need to modify layout.css.devPixelsPerPx if you have overly large layout.

My window size became massively zoomed.


Lots of nice changes, but Pentadactyl won't work with it. If you're using that, you may want to wait a few days.


Quit Firefox, vi into pentadactyl.xpi in your profile, edit install.rdf inside the xpi file (it's just a ZIP file) and modify the max supported version to 23. Save the install.rdf file, quit vi and start Firefox.

Pentadactyl will work, with some minor regressions (e.g. Google home page search box now steals focus) and 's' (google search) command prints error message: Error: TypeError: keywords in null, but the search works.

But otherwise everything else seems to work.


Doesn't work, still thinks the version is incompatible. Still using 21 for now.


Cool, it worked. Thank you!


you can go back to vimperator. I'm using it on 23.0a2 without problems.


I really don't like the way Vimperator works nowadays. It's why I moved to Pentadactyl.


Anyone know when it will be possible to remove the title bar on OS X? With tabs on top it's redundant and Firefox uses more vertical space than Safari or Chrome.

There are various extensions floating around that claim to do this but they generally target much older versions of Firefox and don't work very well.


You may be interested in Australis, which removes the title bar by default. Scheduled for Firefox 25. Some (rather old) mockups here: https://people.mozilla.com/~shorlander/ux-presentation/ux-pr...


They're implementing it at the moment, release channel FF doesn't have the capability yet.


This is a great release! I wonder about this, though:

> The stack trace is now shown as a breadcrumb near the top

Who thought this was a good idea? This leaves room for about 3 items, whereas most stacks nowadays are much larger. A normal vertical list makes much more sense than a horizontal breadcrumb, IMHO.


If you right click on a breadcrumb, you'll get the vertical stack. But there's certainly room for some polishing.


Interesting to see where Firefox is the most popular these days: http://en.wikipedia.org/wiki/File:Countries_by_most_used_web...


According to the infographic, Firefox seems to be popular in North Korea, with 33.79% market share. I suppose they don't censor StatCounter in Pyongyang? /jk


Firefox is very popular in central and north africa.


I was hoping they'd restore the old "split" Inspect Element UI, instead they added the option to dock it on the right side of the browser.

Not what I was looking for, I wanted the Rules on the side in a column, and the inspector along the bottom like it used to be.

Disappointed.


Yet no TLS 1.2 support, vote for it: https://bugzilla.mozilla.org/show_bug.cgi?id=480514


Looking nice, hope they continue to improve performance and stability too.

Having a huge amount of issues with the flash plugin at the moment, not sure if that's their fault or Adobe's though.


Firefox can't do anything to prevent a plugin from crashing. That and I'd wager most of the Flash movies are very poorly coded, resulting in exceptions that could've been prevented. You can tell by browsing the web with a debug build of Flash.


So glad asm.js optimisations have been released.

Though sadly it coincides with me having to pull something offline I cross-compiled to asm.js, due to GPL violations. But that's another story.


I am very exited for webrtc in Firefox stable.


I love Firefox. But, it's about damn time to remove the scroll bars on Mac OS X. This was a Lion feature and we're almost two versions removed from that.


The scrollbars are fixed in version 23. Download Firefox Beta, Aurora, or Nightly and you will get them :)


That's fantastic! I guess it's coming in July or August?


Yup, Firefox is on a 6-week release cycle so it should be in the first week of August. (Right now 22 is "release", 23 is "beta", 24 is "aurora" and 25 is "nightly".)


23 is early August. https://wiki.mozilla.org/RapidRelease/Calendar has all the dates.


Not a whole lot of Mac OSX dev's contributing to the project these days. Doing what we can.


Actually, it's more "not a whole lot of MacOSX devs contributing to the UX these days." Plenty of MacOS X devs contributing everywhere else.


They're in Nightly[1]. I've been running UX nightly[2] for the new tab design for a few months with little to no issues with stability.

[1]: http://nightly.mozilla.org/

[2]: http://people.mozilla.org/~jwein/ux-nightly/


The UI looks identical to me. It's supposed to be like this right? http://people.mozilla.com/~shorlander/files/australis-design...


Yes, roughly. I used the Mac version at home this morning. I haven't used the Linux one for a couple weeks, but it looked like that when I did.

You're sure you're using the UX nightly? The normal nightly doesn't have the new tab design.


I did. My old firefox instance must've been lingering around and then the remote behavior made it just launch a new window in that.


I generally put the scrollbars back in on my OSX installation.


Still no resizable bookmarks window.



I think the bookmark overlay has not received updates in a long time. If you use it often with many tabs, it's actually quite a pain to use it.


Except for the bookmarks window. Can you elaborate?


Since the days Firefox 3 it is no longer possible to resize the bookmarks window you get when you press Ctrl+D or click star.

The solution was to hack userchrome.css or install OpenBook add on.

However it is no longer being kept up to date with Firefox.

A possible update for it is to use Edit Bookmark Plus instead.

Some information here, https://bugzilla.mozilla.org/show_bug.cgi?id=418864


Calling that the "bookmarks window" will just confuse people. It's not a window.


A GUI widget then.


Aside from compatibility testing, does anyone here really use Firefox much? I use Safari, with Chrome on occasion. That's about it.

I also recall that Firefox leaked a lot of memory, not sure if that's been fixed now.

If it's the case that IE is now a decent browser and Windows people use that or Chrome, and Mac people using Safari, I'm just wondering what spot or niche Firefox fills. I suppose in the Linux world, Firefox and Chrome are the only major options.


Well, if you are a keyboard person and don't want to go to a niche browser (like dwb, vimperator or jumanji), then Firefox+pentadactyl is better than anything available for Chrome.


Don't forget about Tree Style Tab


I use Firefox on both Mac and Windows because of its extensions. Firefox allows its extensions to change more of the browser experience than other browsers do.

I really love Tab Utilities (https://addons.mozilla.org/en-US/firefox/addon/tab-utilities...), which helps me use my browser despite my 914 open tabs by making the New Tab command open the new tab directly to the right of the current tab, not all the way at the right. Other extensions that can only exist in Firefox include Copy Urls Expert (http://www.kashiif.com/firefox-extensions/copy-urls-expert/) and Tree Style Tab (https://addons.mozilla.org/en-US/firefox/addon/tree-style-ta...).


> I also recall that Firefox leaked a lot of memory, not sure if that's been fixed now.

It has. See https://wiki.mozilla.org/Performance/MemShrink for details.




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: