Commit Graph

506827 Commits

Author SHA1 Message Date
Carsten "Tomcat" Book
ccd2feb7ba Backed out changeset e1dbcf0b7019 (bug 1328937) 2017-01-11 12:46:32 +01:00
Carsten "Tomcat" Book
8f9863970b Backed out changeset 927275a3ea2c (bug 1328937) 2017-01-11 12:46:30 +01:00
Carsten "Tomcat" Book
1851a07b40 Backed out changeset 1d0bc7e990fe (bug 1328937) 2017-01-11 12:46:28 +01:00
Carsten "Tomcat" Book
c1a0c67e9e Backed out changeset 8e5f0fda8a89 (bug 1328937) 2017-01-11 12:46:25 +01:00
Carsten "Tomcat" Book
04547310e6 Backed out changeset 21f392a1ac51 (bug 1328937) 2017-01-11 12:46:23 +01:00
Sebastian Kaspari
746b8c030b Bug 1328937 - Disable testActivityStreamContextMenu. a=bustagefix
There's some refactoring needed to make the test work with the new code base.
This will be worked on in bug 1330280.

MozReview-Commit-ID: 7OtZbrZK1A9
2017-01-11 12:10:34 +01:00
Gabriele Svelto
31100686b0 Bug 1328657 - Added documentation for the crash ping processType field and quieted some warnings r=me 2017-01-11 12:09:43 +01:00
Jon Coppeard
e639e46d9a Bug 1328251 - Don't mark GC things owned by another runtime r=sfink a=abillings 2017-01-11 10:33:52 +00:00
Hannes Verschore
0cf1eda5de Backed out changeset 28ca0dfe8d72 2017-01-11 11:17:23 +01:00
Dão Gottwald
900b14556f Bug 1330001 - Remove browser code behind Windows XP and Vista version checks. r=jaws 2017-01-11 10:54:16 +01:00
Wes Kocher
b0c1453d57 Backed out 4 changesets (bug 1316482) for frequent reftest failures on win7vm a=backout
Backed out changeset ad208e73ab6c (bug 1316482)
Backed out changeset 2a28dc0a75d3 (bug 1316482)
Backed out changeset b54126cc63d4 (bug 1316482)
Backed out changeset ebd0c6c8b783 (bug 1316482)

MozReview-Commit-ID: IFpLJUjj8qH
2017-01-10 18:11:10 -08:00
Wes Kocher
1d16e48df0 Merge inbound to central, a=merge
MozReview-Commit-ID: FLWmryRuVoL
2017-01-10 17:56:46 -08:00
Wes Kocher
64befa7d5b Merge autoland to central, a=merge
MozReview-Commit-ID: AzdmcFWgfx2
2017-01-10 17:22:08 -08:00
Wes Kocher
350eb06d4d Backed out changeset 84f4a96a130b (bug 1325743) for incredibly frequent Windows 7 VM reftest crashes in variable-supports-23.html a=backout
MozReview-Commit-ID: C1qQVYWpUUV
2017-01-10 13:52:23 -08:00
Nicholas Nethercote
7a8872808f Bug 1329846 (part 2) - Remove NATIVE_HAS_FLAG. r=mccr8.
It's only used in three places, and it no longer makes the code more readable.

--HG--
extra : rebase_source : 1d66cc542dda8d66a72d567f271fcab60c2d92c4
2017-01-11 07:40:19 +11:00
Aaron Klotz
5ae97b84d3 Bug 1325676: Prevent Windows 8 touchscreen support from instantiating a11y; r=jimm
MozReview-Commit-ID: H7HQMmvBLol
2017-01-10 12:46:37 -07:00
Boris Zbarsky
c72e861f38 Bug 1329887. Fix some misleading comments in nsILoadInfo. r=ckerschb 2017-01-10 14:46:30 -05:00
Boris Zbarsky
82a1a5527d Bug 1329885. Be more careful about removing our SEC_FORCE_INHERIT_PRINCIPAL bit in LoadInfo constructors. r=ckerschb 2017-01-10 14:46:30 -05:00
Boris Zbarsky
bfa711e9c3 Bug 1326522. Fix the include situation for unions containing primitives by making UnionTypes/UnionConversions header stuff look more like CGHeaders. r=peterv 2017-01-10 14:46:30 -05:00
Boris Zbarsky
0738cc6861 Bug 1329323. Stop throwing on nightly/aurora when trying to define a non-configurable property on the window, since we've determined that this is not web-compatible. r=peterv 2017-01-10 14:46:30 -05:00
Sebastian Hengst
8bf1cfb0b5 Bug 1300784 - Follow-up: Disable browser_selectpopup.js on Linux for frequently failing. r=fix-these-oranges 2017-01-10 19:23:04 +01:00
Joel Maher
160093df2f Bug 1328383 - add BUG_COMPONENT to caps/* files. r=bholley
MozReview-Commit-ID: 64bkvdcsHL9
2017-01-10 12:46:28 -05:00
cku
3a2f71af0e Bug 1325038 - Part 2. Reftest for bug 1324809. r=heycam
MozReview-Commit-ID: BAP6UkwTV5J

--HG--
extra : rebase_source : 2ef7fa2ed51b2473114a5c16112ab86b0518d098
2017-01-11 00:11:42 +08:00
cku
2ccbd7a896 Bug 1325038 - Part 1. Correct assertion logic. r=heycam
In the test case of bug 1324809:
1. A span is been broken into two continuation frames: FA and FB. FA is the first
connituation
2. Adding a filter effect to this span.
3. FA::FinishAndStoreOverflow is called. This function will call ComputeEffect:
  if (nsSVGIntegrationUtils::UsingEffectsForFrame(aFrame)) {
    aFrame->Properties().
    Set(nsIFrame::PreEffectsBBoxProperty(), new nsRect(r)); // Now FA has
                                                            // PreEffectsBBoxProperty
                                                            // but FB does not
                                                            // have yet.
    // ComputePostEffectsVisualOverflowRect will iterate all continuations from
    // FA to FB. At this moment, FB does not carry PreEffectsBBoxProperty,
    // assertion failure.
    r = nsSVGIntegrationUtils::ComputePostEffectsVisualOverflowRect(aFrame, r);
  }
4. FB::FinishAndStoreOverflow is called. But already too late.


MozReview-Commit-ID: 2c8OFzSLhfD
***
merge

MozReview-Commit-ID: C0lYQkKCYT6

--HG--
extra : rebase_source : d4777d5b60c9df78fd2ee1d734649b76579644c3
2017-01-12 16:38:48 +08:00
Carsten "Tomcat" Book
58249e3bf0 Backed out changeset 18151dec259d (bug 1184217) for causing bug 1329644 2017-01-10 16:55:37 +01:00
Benjamin Bouvier
d93ef59ab0 Bug 1329774: Fix code generation for 64-bits integer left rotation on x86; r=h4writer
--HG--
extra : rebase_source : 984fb270ccf9ab3b2dcf5cf0415398d12ffb51ce
extra : amend_source : 19c0c9e3bafd2733778c39bba09f7352a8e38e3d
2017-01-10 16:16:41 +01:00
Sebastian Hengst
6945ea68f5 Backed out changeset c6c6a1ba1218 (bug 1329814) for bustage due to undeclared variables. r=backout 2017-01-10 17:59:22 +01:00
Trevor Saunders
ae8b177c6c bug 1329814 - fix race condition when shutting down a tab r=smaug
When TabChild recieves the Destroy message from its parent the doc accessibles
for that tab are shut down.  However if the Shutdown message sent by
DocAccessible::Shutdown() isn't recieved before the child process handles the
runnable that sends __delete__ to the tab parent actor the parent can send a
message to the already shut down doc accessible child actor.
2017-01-10 11:59:03 -05:00
Nathan Froyd
c5ffb0976b Bug 1329726 - part 2 - ensure {,HOST_}RUST_PROGRAMS are hooked into root-deps.mk; r=chmanchester
If we don't do this, a directory with only
RUST_PROGRAMS (resp. HOST_RUST_PROGRAMS) won't get traversed properly.
2017-01-10 11:33:58 -05:00
Nathan Froyd
96bf4530f4 Bug 1329726 - part 1 - ensure _compile_graph is deterministically ordered; r=chmanchester
Future tests will depend on the ordering for this, and it seems like a
good change to make in any event.
2017-01-10 11:33:58 -05:00
Ben Kelly
b54fac30f3 Bug 1329668 Handle partial initialized when ScriptLoader is canceled. r=baku 2017-01-10 08:20:16 -08:00
Ben Kelly
095ebc2535 Bug 1329693 Gracefully handle immediate ActorDestroy() in CacheStorage::ActorCreated(). r=asuth 2017-01-10 08:20:15 -08:00
Ben Kelly
14426edb1b Bug 1329682 Gracefully handle immediate ActorDestroy() calls in CacheStreamControlParent. r=asuth 2017-01-10 08:20:15 -08:00
Ben Kelly
076e2cbd26 Bug 1329669 Gracefully handle nullptr Cache actor in CacheStorage::Open() result. r=asuth 2017-01-10 08:20:15 -08:00
Ben Kelly
7254b4bfa4 Bug 1329284 Refactor DOM timeout to set mWhen/mTimeRemaining from one place. r=ehsan 2017-01-10 08:08:18 -08:00
Carsten "Tomcat" Book
f1af2c5ab9 Merge mozilla-central to mozilla-inbound 2017-01-10 16:57:43 +01:00
Lars T Hansen
f9a1ff6310 Bug 1321773 - SAB+Atomics are off by default in both release and beta. r=shu
--HG--
extra : rebase_source : 079215cc9b7709e23987145442d04e0059e648d9
extra : amend_source : a07f6c457f6d3334d27a00fec942c0297b994bae
2017-01-10 15:47:55 +01:00
Carsten "Tomcat" Book
7393426ca8 Backed out changeset 8beb4b722b73 (bug 1321865) for errors like in test_intersectionobservers.html
--HG--
extra : rebase_source : e8003e47128843e53bf10e8eefee8cbea914d481
2017-01-11 10:13:49 +01:00
Carsten "Tomcat" Book
b77b4b1c41 Backed out changeset 1f9103460d1a (bug 1321865)
--HG--
extra : rebase_source : ce62e2845e5f32303c00283c18c3a966dadae481
2017-01-11 10:13:15 +01:00
ffxbld
6d10f48530 No bug, Automated HPKP preload list update from host bld-linux64-spot-307 - a=hpkp-update 2017-01-10 06:46:36 -08:00
ffxbld
86cfb8cc9f No bug, Automated HSTS preload list update from host bld-linux64-spot-307 - a=hsts-update 2017-01-10 06:46:34 -08:00
Carsten "Tomcat" Book
89882dc5f4 merge mozilla-inbound to mozilla-central a=merge 2017-01-10 12:11:31 +01:00
Shing Lyu
11a1d3e940 Bug 1328825 - Update reftest-stylo.list and expectations. r=heycam
MozReview-Commit-ID: AMwdk5wvM0F
2017-01-10 15:50:59 +08:00
Nicholas Nethercote
e3685c4266 Bug 1329846 (part 1) - Remove XPCNativeScriptableInfo. r=mccr8.
XPCNativeScriptableInfo is now a very thin wrapper around nsIXPCScriptable, and
it uses manual memory management. Removing it simplifies things quite a bit.

In particular, when setting XPCWrappedNative::mScriptable in
XPCWrappedNative::WrapNewGlobal() and XPCWrappedNative::Init() we no longer
have to worry about sharing the XPCNativeScriptableInfo object with the proto.
And XPCWrappedNative::{Init,Destroy}() have similar simplifications.

--HG--
extra : rebase_source : e58eb28f1574224a8e8badf25fcfa25e5a5b8ad8
2017-01-10 12:47:57 +11:00
David Anderson
3651b67998 Don't double-copy the Edit list when forwarding transactions. (bug 1330531, r=mattwoodrow)
--HG--
extra : rebase_source : 84d431eb29185fc10abc6c743ee81067ec3e7c61
2017-01-12 09:49:30 -08:00
Luke Wagner
094950cd37 Bug 1330150 - Don't abandon sample if native stack walk fails (r=ehsan)
MozReview-Commit-ID: CyPPGEGX8R2
2017-01-12 17:40:20 -06:00
Pawan Sasanka
89f0ef7dfc Bug 1319541 - Remove leftover chrome://browser/skin/social/gear_*.png files, r=florian. 2017-01-12 20:42:35 +05:30
Pawan Sasanka
18fcf9d31b Bug 1319849 - Remove unused browser/extensions/pocket/content/panels/img/signup_or@*x.png images, r=florian. 2017-01-12 20:36:16 +05:30
Pawan Sasanka
7f534a8597 Bug 1319432 - Remove unused chrome://browser/skin/newtab/whimsycorn.png file, r=florian. 2017-01-12 20:10:55 +05:30
Pawan Sasanka
67f34d03dc Bug 1320126 - Remove unused chrome://browser/skin/keyhole-forward-mask.svg file, r=florian. 2017-01-12 19:05:25 +05:30