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.
========
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 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.
The BCE did not get the RAII treatment the Parser got, because all the
enter/exit scope operations in the BCE are fallible. Separating out the
fallible paths from the statement stack management made things less
readable.
This was an optimisation added to prevent recalculating our buffered ranges unnecessarily, but it became totally unnecessary with bug 1174981.
Additionally, it appears that there's a race in its use ; which I can't identify.
After this change, we have PLDHashTable::ShallowSizeOf{In,Ex}cludingThis(),
which don't do anything to measure children. (They can be combined with
iteration to measure children.)
This patch also removes the PL_DHashTableSizeOf{In,Ex}cludingThis() functions.
They're not necessary because the methods can be used instead.
Finally, the patch deliberately converts some SizeOfExcludingThis() calls to
SizeOfIncludingThis(). These are all done on heap pointers so this change is
valid.
Bug 960465 (specifically part 6, changeset 7d16f2fd8329) changed the way we
process animation-only style changes. This caused us to update SMIL animations
more often than is needed.
This patch adjusts this behavior to update the style from SMIL animations less
frequently by tracking when animated values have been composited without adding
the corresponding changes to a restyle tracker.