Граф коммитов

377958 Коммитов

Автор SHA1 Сообщение Дата
Frédéric Wang 8a3d32d6d7 Bug 1042257 - Part 1: Integrate GeckoAccessibility into GeckoView. r=mfinkle 2014-08-20 17:37:36 -07:00
Frédéric Wang 304b1ca8d3 Bug 1042257 - Part 2: Listen when the user enables/disables accessibility. r=mfinkle 2014-08-20 17:37:32 -07:00
Byron Campen [:bwc] 0b8faee779 Bug 1024028 - Part 1: Test that checking is reached in ice_unittest. r=drno 2014-08-06 10:36:01 -07:00
Byron Campen [:bwc] 22545d9d7e Bug 1024028 - Part 2: Add an ice_checking callback that is fired when checking actually starts. r=drno 2014-08-06 11:34:55 -07:00
Walter Litwinczyk 403559c7c9 Bug 974744 - WebGLFramebuffer.cpp add missing STENCIL_ATTACHMENT completeness check for textures. r=jgilbert 2014-08-19 13:24:39 -07:00
Robert Bindar 29ee85a120 Bug 899585 - Add custom data support in the Notification constructor r=baku 2014-08-20 17:56:12 -07:00
Robert Kaiser 10638101c5 Bug 1006615 - Update extensions.blocklist.itemURL and extensions.blocklist.url to new blocklist domain, r=Mossop,jason
--HG--
extra : transplant_source : r%C2%9D%05%B3%87%3F%7D%F1%F01%9D%C4%A8VAE%85%00%FF
2014-08-21 02:22:25 +02:00
Max Vujovic 4c4ed2fc92 Bug 948265 - Add CSS saturate filter to nsCSSFilterInstance. r=mstange,dbaron 2014-08-20 17:52:28 -07:00
Seth Fowler e9ea912b18 Bug 1024454 (Part 1) - Eagerly propagate dirty bits so absolute children of table parts get reflowed reliably. r=dbaron 2014-08-20 17:48:56 -07:00
Bobby Holley aeed365b08 Bug 1056271 - Switch to GetEntryGlobal in DOMParser::Init. r=smaug 2014-08-20 17:45:04 -07:00
Wes Kocher f1dcf77851 Backed out changeset 2a9cfbab0adc (bug 1053999) for Windows build bustage on a CLOSED TREE 2014-08-20 16:08:04 -07:00
Mike Hommey 84dcbf4a32 Bug 1045923 - Update sccache to 4d312f8. r=mshal 2014-08-20 12:07:07 +09:00
Mike Hommey df8f6a49e4 Bug 1025689 - Disable some libopus ARM features on < ARMv6. r=rillian 2014-08-21 07:44:31 +09:00
Aaron Klotz e6a7afaf9b Bug 286355: nsIProfileUnlocker for Win32; r=bsmedberg
--HG--
extra : rebase_source : 523d763bc480a4c1b9076225e86193b61524090a
2014-08-20 16:47:11 -06:00
Aaron Klotz 8062eacfae Bug 1046942: Start a new Firefox instance upon successful profile unlock; r=bsmedberg
--HG--
extra : rebase_source : e5120f8bd63a7c3298f02874078e3cae37346115
2014-08-20 16:46:56 -06:00
Max Vujovic 891ddf7cb3 Bug 948265 - Add CSS hue-rotate filter to nsCSSFilterInstance. r=mstange,dbaron 2014-08-20 15:46:59 -07:00
Ralph Giles 6906403c04 Bug 1056371 - Fix AppleATDecoder dtor counting. r=cpearce
Typo affecting leak detection.
2014-08-20 15:28:00 -07:00
Wes Kocher b0307a3784 Backed out 2 changesets (bug 1056032) for bustage
Backed out changeset 18b0e0c795d4 (bug 1056032)
Backed out changeset 15caaf563783 (bug 1056032)
2014-08-20 15:30:23 -07:00
Bill McCloskey d701ccf82e Bug 1053999 - Be more conservative in recursion checks before brain transplants (r=bholley) 2014-08-20 15:16:07 -07:00
Botond Ballo 138c8c6eea Bug 1025436 - Gtest for flinging into overscroll. r=kats
--HG--
extra : rebase_source : 04f121408c43826ac67e71acb229cfcaad137c3e
2014-08-20 14:28:41 -04:00
Botond Ballo 7d1b3578fc Bug 1025436 - Return true from AsyncPanZoomController::AdvanceAnimations() if one of the deferred tasks started a new animation. r=kats
--HG--
extra : rebase_source : 82978c55141b9a3ef05dff2273edd5c84dace479
2014-08-20 14:28:05 -04:00
Botond Ballo 72de203c22 Bug 1042974 - Gtests for scrollgrab. r=kats
--HG--
extra : rebase_source : 1de35060a59c594bde0c7c003775b32fb71b6d51
2014-08-20 13:22:36 -04:00
Botond Ballo 98bf9dbd8d Bug 1042974 - Dispatch flings to the right scrollable element in the presence of scrollgrab. r=kats
--HG--
extra : rebase_source : b2282c8fb958d91160d7b89790baf97ada591804
2014-08-18 16:12:43 -04:00
L. David Baron be148c11c3 Bug 1048838 - Add mochitest for transitions and restyles. No review.
The third test fails without the patch, and passes with the patch.
2014-08-20 14:57:21 -07:00
Brian Birtles d9ac434bd9 Bug 1048838 - Properly invalidate the style rule in nsTransitionManager::StyleContextChanged. r=dbaron
This patch fixes a regression from
https://hg.mozilla.org/mozilla-central/rev/31695984cfe2 (bug 1025709). That
patch replaced the EnsureStyleRuleFor method on ElementTransitions and
ElementAnimations with a common method in CommonElementAnimationData.

ElementTransitions::EnsureStyleRuleFor would create a new style rule if
there was no style rule (mStyleRule == nullptr) or if the refresh time was
old (mStyleRuleRefreshTime != aRefreshTime).

ElementAnimations::EnsureStyleRuleFor, however, would create a new style rule
only if mStyleRuleRefreshTime was null or old since a null style rule may
still be valid for animations (unlike transitions). If we bail as soon as we
a null style rule we would never update mNeedsRefreshes when the animation
finishes.

The unified version of EnsureStyleRuleFor in CommonElementAnimationData
adopted the behavior from ElementAnimations checking for a null or old
mStyleRuleRefreshTime.

However, nsTransitionManager::StyleContextChanged sets mStyleRule to nullptr
to indicate that we need to generate a new style rule. This means that we
will fail to create a style rule for the transition in some cases.

This patch addresses this by making nsTransitionManager::StyleContextChanged
set mStyleRuleRefreshTime to a null timestamp. Setting mStyleRule to nullptr
is no longer necessary since EnsureStyleRuleFor will do this when necessary
and nsTransitionManager::mStyleRule is only used after calling
EnsureStyleRuleFor.
2014-08-12 16:57:21 +09:00
Daniel Holbert 94d9d2db33 Bug 1020661: Ignore GCC warning Wunused-local-typedefs inside of webrtc's scoped_ptr.h header. r=jesup 2014-08-20 14:56:12 -07:00
Ralph Giles cd407de8d0 Bug 1056232 - Expect fmp4 pref in canPlayType. r=cpearce
The media.fragmented-mp4.exposed pref affects the support status
of video/mp4 reported by canPlayType. Take this into account
in the mochitest.
2014-08-20 11:06:00 -07:00
Ralph Giles 6855ed43dd Bug 1056288 - Remove unused OggPacketQueue::PushBack. r=cpearce 2014-08-20 13:27:00 -07:00
Nathan Froyd 2faebf4212 Bug 1056288 - Fix thinko in OggPacketQueue. r=cpearce. 2014-08-20 12:44:00 -07:00
Paul Adenot 78eba23820 Bug 1056032 - Test that we can decode an mp3 using decodeAudioData. r=ehsan
--HG--
rename : content/media/test/small-shot.mp3 => content/media/webaudio/test/small-shot.mp3
2014-08-20 17:23:24 -04:00
Paul Adenot 44d5b51305 Bug 1056032 - Make sure COM is initialized when trying to decode an mp3 using decodeAudioData. r=cpearce 2014-08-20 17:23:22 -04:00
Ryan VanderMeulen f837952f88 Backed out changeset 6e6bc1bcf229 (bug 1052740) for mochitest-bc crashes.
CLOSED TREE
2014-08-20 16:34:38 -04:00
Ryan VanderMeulen baca1ac7b9 Merge m-c to inbound. a=merge
CLOSED TREE
2014-08-20 16:23:04 -04:00
Ryan VanderMeulen 556b135ea8 Merge inbound to m-c. a=merge 2014-08-20 16:14:23 -04:00
Ryan VanderMeulen 6addb46104 Merge fx-team to m-c. a=merge 2014-08-20 15:56:32 -04:00
Daniel Holbert 098b729147 Bug 1041951 followup: Fix broken comparison against NS_FONT_VARIANT_CAPS_SMALLCAPS, to use != instead of negation. r=dbaron 2014-08-20 11:07:26 -07:00
B2G Bumper Bot ff85627591 Bumping manifests a=b2g-bump 2014-08-20 10:26:25 -07:00
Jared Wein 7fe81216dd Bug 947574 - Switch browser_426329.js to use tasks to avoid intermittent failure. r=Gijs 2014-08-20 13:22:14 -04:00
B2G Bumper Bot 04188f8298 Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/ecfb83057457
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Revert " Bug 1055972 - disable keyboard uninstallation test."

This reverts commit e276b38a14e89c8b5bb36052f475d37716656d2a.
2014-08-20 10:20:32 -07:00
Benjamin Smedberg 0f9810e3be Bug 1012924 diagnostics - increase the log length to 10, r=gfritzsche 2014-08-20 13:07:28 -04:00
Mike Conley d3974cd62a Bug 1050447 - Skip focusing content if we're opening a new about:blank or about:newtab tab. r=dao, feedback=jimm.
This fixes a change in order of focus events for e10s after bug 1009628 landed.
We were accidentally focusing the content after focusing the URL bar for new
tabs. We now skip focusing the content entirely when opening a new tab.

--HG--
extra : histedit_source : a6c140d4e2b4677209b039880922c29e7c24b584
2014-08-20 11:23:43 -04:00
Dave Hylands 335c278dcf Bug 1049240 - Integrate MTP with the AutoMounter. r=echou 2014-08-19 13:41:35 -07:00
B2G Bumper Bot 98133facb4 Bumping manifests a=b2g-bump 2014-08-20 08:42:11 -07:00
B2G Bumper Bot 2852abd3d0 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/839bc16aa4da
Author: Sergi Mansilla <sergi.mansilla@gmail.com>
Desc: Merge pull request #21831 from sergi/blank_screen

Bug 1038815 - Contacts can get into a 'frozen' state in some cases r=francisco

========

https://hg.mozilla.org/integration/gaia-central/rev/71757326ac8c
Author: Sergi Mansilla <sergi.mansilla@gmail.com>
Desc: Bug 1038815 - Contacts can get into a 'frozen' state in some cases
2014-08-20 08:40:32 -07:00
Ed Morley 3580355329 Merge mozilla-central and b2g-inbound 2014-08-20 15:19:45 +01:00
Ed Morley 64c4bef1c1 Merge latest green fx-team changeset and mozilla-central; a=merge 2014-08-20 15:14:31 +01:00
B2G Bumper Bot c76b6c51f7 Bumping manifests a=b2g-bump 2014-08-20 07:01:57 -07:00
Ed Morley acd103862f Merge latest green b2g-inbound changeset and mozilla-central; a=merge 2014-08-20 14:46:55 +01:00
Ed Morley f38841ce35 Merge latest green inbound changeset and mozilla-central; a=merge 2014-08-20 14:26:11 +01:00
B2G Bumper Bot e5ec4cc74a Bumping manifests a=b2g-bump 2014-08-20 06:21:50 -07:00