Patrick McManus
e0f8bdd662
Bug 905460 - Convert http legacy refs to smart pointers r=dragana a=kwierso
...
MozReview-Commit-ID: G86Mrv0Cdgk
2016-03-29 15:35:56 -04:00
Jeff Muizelaar
1b059a3417
Bug 1258650. Properly use aExtraMasksTransform when combining masks. r=Bas,a=kwierso
...
Previously we were ignoring the scale.
2016-03-31 16:34:32 -04:00
Jeff Muizelaar
2439c7be30
Bug 1259248. Add a comment about mfbt/Range.h
2016-03-31 16:32:31 -04:00
Wes Kocher
7b9ea8afc5
Merge inbound to central, a=merge
...
MozReview-Commit-ID: FSnrOgtIFer
2016-03-31 13:04:19 -07:00
Sebastian Hengst
8f28197e07
Backed out changeset 12ff599ce0e2 (bug 1258344) for leaks in OS X 10.10 debug browser-chrome tests. r=backout on a CLOSED TREE
2016-03-31 21:43:23 +02:00
Wes Kocher
099e2cf829
Backed out changeset 08a097c4ea86 (bug 1255961) for build bustage CLOSED TREE
...
MozReview-Commit-ID: 2oPAnEwBpit
2016-03-30 10:20:58 -07:00
Wes Kocher
93b1af493e
Backed out changeset 0f2e90feea3b (bug 1174461) for build bustage CLOSED TREE
...
MozReview-Commit-ID: IJcI44KBoTm
2016-03-30 10:20:45 -07:00
Wes Kocher
e593da093a
Backed out 3 changesets (bug 1253123) for build bustage CLOSED TREE
...
Backed out changeset f0dd577131c7 (bug 1253123)
Backed out changeset d345149b2169 (bug 1253123)
Backed out changeset 6c8278e8047e (bug 1253123)
MozReview-Commit-ID: HL9U2qqeDnY
2016-03-30 10:20:20 -07:00
Wes Kocher
dd58e668a4
Backed out changeset 00f8c8fde8ca (bug 1222101) for build bustage CLOSED TREE
...
MozReview-Commit-ID: F6PINhcfsF4
2016-03-30 10:19:29 -07:00
Brian Grinstead
bd2c925bdf
Bug 1239992 - Focus input field if text is not selected in webconsole output;r=linclark
...
MozReview-Commit-ID: 2MsIap7Rj4P
2016-03-30 10:10:22 -07:00
Andrea Marchesini
7d22a5cb40
Bug 1188818 - DataTransfer must deal with nsIFile of directories, r=jwatt
2016-03-30 17:58:41 +01:00
Bill McCloskey
5b8924bd94
Bug 1222101 - Reorder some thread code (r=jld)
2016-03-30 09:58:41 -07:00
Bill McCloskey
5ef16752e3
Bug 1253123 - Remove message_router (r=jld)
2016-03-30 09:58:41 -07:00
Bill McCloskey
6dd58aa726
Bug 1253123 - Remove ipc_channel_proxy (r=jld)
2016-03-30 09:58:40 -07:00
Bill McCloskey
2bdeb1e82b
Bug 1253123 - Remove ipc_sync_message (r=jld)
2016-03-30 09:58:40 -07:00
Bill McCloskey
3888bea25e
Bug 1174461 - [e10s] Return a cached result from SendGetNativePluginPort (r=jimm)
2016-03-30 09:58:40 -07:00
Bill McCloskey
9cae39064e
Bug 1255961 - Avoid zeroing out shmems (r=dvander)
2016-03-30 09:58:39 -07:00
George Wright
c25afd0590
Bug 1260507 - Disable WARP r=Bas
2016-03-30 12:45:33 -04:00
Josh Matthews
d43f85cd2a
Bug 1259482 - Ensure that image loads are never dropped on the floor when queued for later. r=johns
2016-03-30 12:39:59 -04:00
David Anderson
ea604f9f48
Recreate GLTextureSources after changing compositors on Mac. (bug 1247611, r=mattwoodrow)
...
--HG--
extra : rebase_source : ff5d3cc118ac1f944398431d423c75b254c0a029
2016-03-30 09:33:24 -04:00
Eric Faust
fc2ed09a88
Bug 1260577 - followup: Change confusing name SelfAssign to CompoundAssign. (rs=jorendorff)
2016-03-30 09:32:30 -07:00
Jon Coppeard
ddc520dc29
Bug 1260198 - Clear per-zone string cache after compacting r=terrence
...
--HG--
extra : rebase_source : 2269242a048416049e8caa43b189269837c87809
2016-03-30 17:14:44 +01:00
Yura Zenevich
c3bf1b28ff
Bug 1087608 - ensuring multitap gestures do not resolve to explore. r=eeejay
...
MozReview-Commit-ID: 9CZm709gGMC
2016-03-30 11:56:14 -04:00
Nick Alexander
8f1d82aeb6
Bug 1260519 - Support unsubscribing from Push API messages from a site. r=jchen
...
This was implemented, but never wired up.
I thought long and hard about how to unit test this, and it's quite
difficult. First, we'd have to chose a layer of testing. We could
unit test:
* the JS <-> Java message passing;
* the permission prompts <-> JS interface;
* some interactions with the Service Worker interface.
The first is difficult because none of our current testing emulators
have Google Play Services and GCM enabled, so we'd need to allow to
mock or otherwise fake the GCM registration. Then we'd need to stand
up a mock autopush server (using httpd.js or the Java-side
equivalent), or mock out the autopush client as well. At this point,
we're testing sendMessage. This could be done, but I'd rather slide
this fix in before building out quite a bit of test infrastructure.
(For the record, the Java Push Service state machine is thoroughly
tested with Java unit tests, so I have confidence that the unsubscribe
logic works.)
The second is tested via the PushWebSocket tests, which are now
running on Android. That is, if permissions and the PushService are
interacting badly, we should see it with the existing test suite.
Since PushServiceAndroidGCM is pretty much a pass-through, there's
little value to be added here.
Finally, the third is also tested via the PushWebSocket tests.
There's absolutely nothing GCM specific about the Service Worker
interface to the PushService.
So I'm left manually testing this -- and now we can unsubscribe from
Push messages from sites.
MozReview-Commit-ID: HiRiqasHJ27
--HG--
extra : rebase_source : ce01aa738d583a7200e9dc93ffa38dea9663779c
extra : amend_source : 03fc8a099e83871fa7bfe345168c063b69938d5e
2016-03-29 11:59:52 -07:00
Julian Descottes
d015e2f0e7
Bug 1260359 - fix devtools detached toolbox title update in e10s;r=jryans
...
The devtools host window updates its title when its target navigates.
This was done using a contentDocument CPOW, and thus failing on e10s.
The url and title are now stored in TabTarget and updated on tab navigation.
Updated existing test to cover the case of pages with a title.
MozReview-Commit-ID: 4G1keOA7yB6
--HG--
extra : rebase_source : 720084e9929f334092ffe18e4c786cbf731fe52e
2016-03-29 12:01:46 +02:00
Mike de Boer
e7ad8e9b8b
Bug 1259339
: allow converted findbar tests to run twice as long. r=felipe
2016-03-30 18:37:11 +02:00
Patrick Brosset
f3a608d481
Bug 1253935 - Remove all CPOW usages in styleeditor tests and use ContentTask instead of custom frame-script; r=ochameau
...
MozReview-Commit-ID: 2EeHvPZRf3H
--HG--
extra : rebase_source : db7ca002209b9258cb8ae1bc4e6d2e4d61354001
2016-03-30 17:54:05 +02:00
Brian Grinstead
50d8f54f5c
Bug 1260071 - Call resize() when searching happens on frontend to reset width;r=vporof
...
MozReview-Commit-ID: 3Sbuh5NEN6p
2016-03-30 07:49:42 -07:00
Nathan Froyd
443d2b6637
Bug 1259734 - use AppendElements in DisplayItemClip::AppendRoundedRects; r=dholbert
...
It is shorter and nicer than writing out the loop ourselves.
2016-03-25 09:34:37 -04:00
Rakhi Sharma
45c493d5fa
Bug 1238866 - [Ubuntu] "Add search engine" in search panel has white background with GTK3 and dark theme, r=Gijs.
...
MozReview-Commit-ID: Hvbd7RKyEX
--HG--
extra : rebase_source : 5605147b77b19cf779629a55caea8e28ca79aea2
2016-03-30 18:45:58 +05:30
Syd Polk
351276fc23
Bug 1259249 Make sure that EME system is setup before running tests. r=maja_zf,SingingTree
...
MozReview-Commit-ID: 6I4uVo5Gld7
--HG--
extra : rebase_source : 8b677e85b839d14d657420e676ac920704d08fd7
2016-03-29 16:13:58 -05:00
Juan Gomez
724c796734
Bug 1257127 - Fix b2g device docker images to build in taskcluster r=wcosta
...
--HG--
extra : rebase_source : 58835816ebd5f8d721c44af00562ab7c5799d449
2016-03-30 02:44:00 +02:00
Alexander Surkov
7fcc93f841
Bug 1255617 - make PutChildrenBack to insert accessibles instead the recaching, r=yzen
2016-03-30 10:47:36 -04:00
Henrik Skupin
eb7b329a24
Bug 1260656 - Fix firefox-puppeteer documentation generation for Readthedocs. r=maja_zf
...
MozReview-Commit-ID: 4r7arjvMyWN
--HG--
extra : rebase_source : 06ce2ba9ce9e384f17f90c0c845391fcdcd9e72f
2016-03-30 14:17:10 +02:00
Randell Jesup
5f438060c1
Bug 1260702: Don't crash on input sources from WebAudio in MediaRecorder r=padenot
...
MozReview-Commit-ID: cseol6STUw
2016-03-30 10:08:04 -04:00
Jon Coppeard
a813ba8964
Bug 1260371 - Forward another pointer during TypedObject tracing to fix bustage r=me
...
--HG--
extra : rebase_source : 6d4e89f4c85022b437e533061a5674051b7b2bd4
2016-03-30 15:02:18 +01:00
Gabor Krizsanits
66ca90dd88
Bug 1247420 - part2: IPC hover state management for select. r=Felipc
2016-03-30 11:54:31 +02:00
Gabor Krizsanits
696b23001a
Bug 1247420 - part1: removeContentState. r=smaug
2016-03-30 11:54:27 +02:00
Carsten "Tomcat" Book
1696ce6feb
Backed out changeset 073149564592 (bug 1209273) for causing merge conflicts to m-c
...
--HG--
extra : rebase_source : 0f07112a39ed369f38cf7d78a2e2424b5ae76825
2016-03-30 15:19:37 +02:00
Carsten "Tomcat" Book
d544ab27c4
Backed out changeset 231e5d92a129 (bug 1209273)
...
--HG--
extra : rebase_source : 41c4948ea3fdc58639f6c679d1a983a94aa773a4
2016-03-30 15:19:13 +02:00
Carsten "Tomcat" Book
f18429b344
Backed out changeset afbddd5fb626 (bug 1209273)
...
--HG--
extra : rebase_source : 590c0b8db46996bd39141c00250f0276c8ae9ee1
2016-03-30 15:19:12 +02:00
Jan-Ivar Bruaroey
036cbca2a2
Bug 1259728 - minimal fix for reentrancy in pc.close(). r=jesup
...
MozReview-Commit-ID: Dji4d2bYTcj
--HG--
extra : rebase_source : 65d08cc6869444b2219ed7529ebad6c23115153f
2016-03-29 16:27:03 -04:00
Sebastian Hengst
528d76cc52
Backed out changeset 15a3458b4d11 (bug 1254142) for bustage. r=backout on a CLOSED TREE
2016-03-30 14:27:34 +02:00
Eddy Bruel
42c416610a
Bug 1229769 - Expose Promise interface to WorkerDebugger #ifdef SPIDERMONKEY_PROMISE;r=bz
2016-03-30 14:11:07 +02:00
Hannes Verschore
4c0c65e05f
Bug 1257194: Test availability of function before executing to make sure this doesn't fail upon hitting aurora, r=bbouvier
2016-03-30 08:05:47 -04:00
Nicolas B. Pierron
5c36d8604c
Bug 1258397 - Reorder Instruction: Renumber all instructions including the entry blocks. r=bhackett
2016-03-30 12:03:44 +00:00
Benjamin Bouvier
3bfb730271
Bug 1254142: Baldr: make control flow opcodes yield subexpressions; r=luke
...
MozReview-Commit-ID: 7mf8RgGZpSL
--HG--
extra : rebase_source : 16ea456210839fd1259d61bc912630081ec9acdc
extra : histedit_source : 1eb4b051dfc1c651403590b43ea6f29f9b11274c%2C57cc0f3352e765b479829f5c56ae818b78133e18
2016-03-30 13:48:09 +02:00
Benjamin Bouvier
4507424488
Bug 1259903: Baldr: unify Select true and false types instead of checking against each other; r=luke
...
MozReview-Commit-ID: 2GHFuLNTuP3
--HG--
extra : rebase_source : f9e39ba0202cd3dfcd33431db70c4174e27e96ee
2016-03-30 09:41:07 +02:00
Jon Coppeard
ca319d558f
Bug 1235677 - Add assertion to catch unsafe concurrent use of AutoEnterOOMUnsafeRegion r=terrence
2016-03-30 12:33:56 +01:00
Jon Coppeard
b662630444
Bug 1260371 - Rearrange RelocationOverlay so that magic field does not overlay inline string chars r=terrence
2016-03-30 12:33:55 +01:00