========
https://hg.mozilla.org/integration/gaia-central/rev/f99acf8fe79c
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #30872 from etiennesegonzac/bug-1179040
Bug 1179040 - Don't hide setVisible(false) frames to benefit from gecko keeping the layer tree alive a bit. r=kgrandon
========
https://hg.mozilla.org/integration/gaia-central/rev/d987504bc86e
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 1179040 - Don't hide setVisible(false) frames to benefit from gecko keeping the layer tree alive a bit. r=kgrandon
========
https://hg.mozilla.org/integration/gaia-central/rev/37f6eb95a19e
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Revert "Merge pull request #30894 from albertopq/1181602-icon-apps"
This reverts commit 0585f7ec07d0ed12f5bb53e051d01d33b91288cb, reversing
changes made to dda7775cea807343b69ef233a41bbddaba48620e.
The set of events fired to platform accessibility is not the same as the set in
the event queue. Therefore we should forward events to the parent process
someplace where they are the same so the same events can be emitted for child
processes.
========
https://hg.mozilla.org/integration/gaia-central/rev/a36d596fd769
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Merge pull request #30943 from asutherland/email-mofo-local-autoconfig
Bug 1183175 - use gmail entry for mozillafoundation.org. r=mcav
========
https://hg.mozilla.org/integration/gaia-central/rev/a3b75be3f88d
Author: Andrew Sutherland <asutherland@asutherland.org>
Desc: Bug 1183175 - use gmail entry for mozillafoundation.org
Because of ISPDB bug 1177436 we need to copy the gmail.com entry to
mozillafoundation.org like we did for mozilla.com for slightly different
reasons. (The transition from Zimbra to GMail necessitated it while we
were waiting for DNS changes that would make MX resolution work.)
========
https://hg.mozilla.org/integration/gaia-central/rev/b9c1b11b181d
Author: Guillaume C. Marty <gmarty@users.noreply.github.com>
Desc: Merge pull request #30843 from gmarty/Bug-1180771-When-navigating-to-a-page-on-the-same-domain-dont-set-the-default-icon
Bug 1180771 - When navigating to a page on the same domain, don't set the default icon
========
https://hg.mozilla.org/integration/gaia-central/rev/7207cff4ed93
Author: Guillaume Marty <edo999@gmail.com>
Desc: Bug 1180771 - When navigating to a page on the same domain, don't set the default icon
These changes restore the previous behavior in which the data is decoded
according to a locale specific default charset if the UTF-8 conversion fails.
This allows the method to properly decode both UTF-8 data and data that has
been encoded with the locale default charset (ISO-8859-1 in most cases) without
any charset hints from the source.
The conversion is now a two step process:
1. Convert the stream content to a string using the locale specific encoding.
2. Try reinterpret the data according to UTF-8 rules. If it succeeds, return
the conversion result. If it fails, return the original string.
Basically, this change is all about aggregating SpiderMonkey's fine-grained
measurements into the new set of coarse-grained measurements, called
ServoSizes (which is similar to the existing TabSizes). The change utilizes and
extends the existing macro machinery to do this in a way that has some chance
to maintaining correctness over the long-term despite the fact that this code
is so fiddly.