========
https://hg.mozilla.org/integration/gaia-central/rev/9466d277f043
Author: Gabriele Svelto <gsvelto@mozilla.com>
Desc: Merge pull request #31132 from gabrielesvelto/bug-1174380-fix-ignore-button
Bug 1174380 - Hide the hangup button when receiving a second call and properly align the ignore button r=drs
========
https://hg.mozilla.org/integration/gaia-central/rev/a1d6bc7e28af
Author: Gabriele Svelto <gsvelto@mozilla.com>
Desc: Bug 1174380 - Hide the hangup button when receiving a second call and properly align the ignore button r=drs
========
https://hg.mozilla.org/integration/gaia-central/rev/73c9024a9dc7
Author: Carsten Book <tomcat@mozilla.com>
Desc: Merge pull request #31130 from tdz/bug-1188310
Bug 1188310 - Use 'nodejs' tool for Node.js on Debian 7. r=mwu
========
https://hg.mozilla.org/integration/gaia-central/rev/d972b2bea2b4
Author: Thomas Zimmermann <tdz@users.sourceforge.net>
Desc: Bug 1188310: Use 'nodejs' tool for Node.js on Debian 7
The tool 'node' seems to be called 'nodejs' on Debian 7. This patch
prepares the Makefile to handle this case.
When used in the MP4ContainerParser, the MoofParser set the trackID as 0 ; indicating that all tracks are to be parsed. However it set later the trackID to the first one found, causing to ignore all following tracks.
Currently we don't check the dom.push.enabled pref in some cases for
some of these interfaces. This patch unifies how all of these
interfaces are exposed to Window, Worker, and ServiceWorker.
If a tabpanel is hidden, the tabs and their panels get mixed up. Here's
what MDN has stated about this matter:
"Panels should never be hidden; hiding the tab suffices to make the
panel inaccessible."
The changes also modify tests that assume the tabpanels are hidden to
assert that the tabpanels are NOT hidden.
--HG--
extra : commitid : K08Xaml1w8v
========
https://hg.mozilla.org/integration/gaia-central/rev/3b5be8b229de
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 1184819 - Follow-up, remove unused references to pack- components.
It seems like for some reason the lists.css file was copied into the app. Removing these references from the app helps implementation as it cleans up usage when searching. R=kgrandon
========
https://hg.mozilla.org/integration/gaia-central/rev/26b751c2ec1d
Author: Ghislain 'Aus' Lacroix <aus@noiseport.org>
Desc: Merge pull request #31168 from nullaus/bug1174901
Bug 1174901 - retry when failing to get output from marionette-mocha.…
========
https://hg.mozilla.org/integration/gaia-central/rev/66bcf0d08940
Author: Ghislain 'Aus' Lacroix <aus@mozilla.com>
Desc: bug 1174901 - retry when failing to get output from marionette-mocha. r=gaye
Doing an AddRef or Release of a cycle collected object during CC
traversal can cause leaks. traverseResultObservers does this in two
places. First, it accidentally copies the array that is passed
in. Second, the GetValue() method that is being implicitly called in
the line with |aObservers.ElementAt(i);| does a QI.
This patch fixes the former problem by passing a reference. It fixes
the latter problem by returning the raw underlying pointer held by the
nsMaybeWeakPtrArray, which is what the CC wants anyways, because it
does not care about weak referents.
This also completely remove build/automationutils.py.
--HG--
extra : commitid : 50v6EAQNEHV
extra : rebase_source : 4ac1347d73498f068979514c6afb16ac50ab4033
This is to distinguish between getting the top scope associated with a
statement local to the script, or the innermost scope, which may not be
local to the script.