Commit Graph

272126 Commits

Author SHA1 Message Date
Ehsan Akhgari
ae44b58442 Bug 1215723 - Part 4: Make isSecureHost and isSecureURI usable from the content process; r=keeler 2015-10-30 15:30:00 -04:00
Ehsan Akhgari
578bdf9ab2 Bug 1215723 - Part 3: Propagate updates to DataStorage from the parent process to the content processes; r=keeler 2015-10-30 15:30:00 -04:00
Ehsan Akhgari
3990e391f4 Bug 1215723 - Part 2: Initialize DataStorage items in the content process from the data in the parent; r=keeler 2015-10-30 15:30:00 -04:00
Ehsan Akhgari
ef691b31b2 Bug 1215723 - Part 1: Make DataStorage a singleton for each file name; r=keeler
This is needed so that we'd be able to identify a DataStorage instance
based on its file name.
2015-11-02 12:33:00 -05:00
Maja Frydrychowicz
01f5f95436 Bug 1199588 - Add --workspace option to Marionette runner; r=automatedtester
The default behaviour is unchanged: gecko.log and logcat are saved to the
cwd, a temporary Firefox profile is cloned or created in TMP.

When a path is specified via --workspace, gecko.log, logcat and the Firefox
profile directory are all saved there instead. A profile saved in the
workspace does not get deleted at the end of a session unless it's a clone.
2015-11-02 11:55:29 -05:00
Tim Chien
3c7870b2c4 Bug 1198163 - Workaround Mochitest app and assign frame proper permissions, r=kanru 2015-11-10 22:17:00 +01:00
Kartikaya Gupta
8fa57393f0 Bug 898075 - Remove the mozbrowserasyncscroll event from Gecko. r=botond,kanru,sicking 2015-11-11 10:17:47 -05:00
Bas Schouten
eff9c2c380 Bug 1210560 - Part 8: Remove unused PushGroup/PopGroup/PopGroupToSource functions. r=jrmuizel 2015-11-11 16:15:40 +01:00
Bas Schouten
50f36526e8 Bug 1210560 - Part 7: Convert GTK widget code to use Moz2D instead of PushGroup/PopGroup. r=jwatt 2015-11-11 16:15:40 +01:00
Bas Schouten
5e37fd72e1 Bug 1210560 - Part 6: Convert code to support non-operator OVER in nsCSSRendering to moz2d. r=roc 2015-11-11 16:15:40 +01:00
Bas Schouten
ed29caea11 Bug 1210560 - Part 5: Convert BasicLayers usecases to PushGroupForBlendBack and temporary surfaces. r=jrmuizel 2015-11-11 16:15:39 +01:00
Bas Schouten
a14ffbfa72 Bug 1210560 - Part 4: Remove code to support non operator-over in nsRenderDocument and move to CanvasRenderingContext2D::DrawWindow. r=roc 2015-11-11 16:15:39 +01:00
Bas Schouten
00abddcc3a Bug 1210560 - Part 3: Convert more complex SVG usecases to PushGroupForBlendBack. r=jwatt r=jrmuizel 2015-11-11 16:15:39 +01:00
Bas Schouten
77996c6110 Bug 1210560 - Part 2: Convert some simple users to use PushGroupForBlendBack. r=jrmuizel 2015-11-11 16:15:39 +01:00
Bas Schouten
0d9df3ce70 Bug 1210560 - Part 1: Add an API specifically intended for users that just Push and Pop-Mask/Pop-Paint. r=jrmuizel 2015-11-11 16:15:39 +01:00
sajitk
aec22fe652 Bug 1219480 - Replace PRLogModuleInfo with LazyLogModule in the media directory. r=rillian 2015-11-11 06:52:00 +01:00
Thinker K.F. Li
93517393f2 Bug 1210784 - Layer tree invalidation with Preserves3D. r=roc 2015-11-02 18:28:00 +01:00
Jim Mathies
4e3a67afbe Bug 1190364 - "With electrolysis (e10s) enabled and lots of tabs open, plugincheck often fails to find any plugins". r=billm 2015-11-11 05:35:00 +01:00
Kartikaya Gupta
a64dd199c2 Bug 1214267 - Send the side to which fixed-pos items are attached so that we can move them in the compositor more correctly when the viewport size is changing. r=mattwoodrow 2015-11-11 10:07:29 -05:00
Christoph Kerschbaumer
6dd1b5ff36 Bug 1219931 - CSP: Don't allow removing a policy (r=sicking) 2015-11-02 08:04:15 -08:00
Christoph Kerschbaumer
bc174c3990 Bug 1188028 - Queue up CSP console messages till windowID is available (r=sicking) 2015-11-11 06:23:57 -08:00
Christoph Kerschbaumer
9953e37cb1 Bug 1188028 - Use channel->ascynOpen2 in dom/security/nsCSPContext.cpp (r=sicking) 2015-07-27 11:57:56 -07:00
Mike Shal
737b74d6fd Bug 1223591 - add buildid dependency for platform.ini in faster make backend; r=glandium 2015-11-10 18:07:51 -05:00
Jean-Yves Avenard
6310fce002 Bug 1221825: P2. Ensure frame memory allocation succeeded. r=cpearce 2015-11-12 01:10:37 +11:00
Jean-Yves Avenard
7bb0d03615 Bug 1221825: Fix logging arguments. r=cpearce 2015-11-12 01:10:36 +11:00
John Daggett
8204f43ef5 Bug 1160506 - support intra-family font fallback. r=heycam
Fontconfig allows for fonts to be arbitrarily mapped into another font
family. Under some versions of Debian and Fedora, families like Droid
Sans Japanese were mapped into the Droid Sans family. To match these
font families properly, it's necessary to test multiple fonts within a
single given family. Since this is a relatively time consuming
procedure, only do this when there are multiple regular faces for a
given family.
2015-11-11 21:13:33 +09:00
Andreas Tolfsen
2732ddf842 Bug 1223028: Exhaust server-originated commands
The Python client does not currently exhaust all the command
requests originating from the server as pointed out by :bhsu in
https://bugzilla.mozilla.org/show_bug.cgi?id=1211503#c12.

This prevents making multiple calls to runEmulatorCmd and runEmulatorShell
inside executeScript/executeJSScript/executeAsyncScript.  This failure
makes marionette-webapi fail.

We loop through all the commands originating from the server until we
get sent back a response.

r=dburns
2015-11-09 15:54:10 +00:00
Carsten "Tomcat" Book
9c42079823 Merge mozilla-central to mozilla-inbound 2015-11-11 12:44:18 +01:00
Carsten "Tomcat" Book
eb4942092b merge mozilla-inbound to mozilla-central a=merge 2015-11-11 12:42:52 +01:00
Carsten "Tomcat" Book
dc3e1cfa37 merge fx-team to mozilla-central a=merge 2015-11-11 12:04:33 +01:00
Phil Ringnalda
bfd024e337 Back out changeset 4d6d9c1e52e4 (bug 1223647) for failures in test_csp.html, csp/test_redirects.html and csp/test_worker_redirect.html 2015-11-10 23:10:04 -08:00
Sotaro Ikeda
278c87baf5 Bug 1186796 - Replace nsBaseHashtable::EnumerateRead() calls in image/ with iterators r=njn 2015-11-10 23:07:09 -08:00
Allison Naaktgeboren
1c03aa1b9b Bug 1215475 - Search suggestions are duplicated after one of it is previously selected.r=mcomella 2015-11-10 19:02:23 -08:00
B2G Bumper Bot
5adf8f32dc Bumping manifests a=b2g-bump 2015-11-10 16:16:56 -08:00
B2G Bumper Bot
d7560653b3 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/fbb1b70ce9fd
Author: Sam Foster <sfoster@mozilla.com>
Desc: Merge pull request #33090 from sfoster/ftu-statusbar-gij-bug-1219655

Bug 1219655 - Statusbar tests for FTU + helpers. r=mhenretty

========

https://hg.mozilla.org/integration/gaia-central/rev/6a3c4adbf7d2
Author: Sam Foster <sfoster@mozilla.com>
Desc: Bug 1219655 - Statusbar tests for FTU + helpers
2015-11-10 16:15:33 -08:00
Gregory Szorc
8daae9f220 Bug 1223149 - Add basic usage documentation for mach build; r=glandium
Support for displaying docstrings in `mach help` was added relatively
recently. `mach build` was never documented. Let's document it.

There are a gazillion things we could put in the documentation. For now,
mainly focus on targets.
2015-11-10 15:41:08 -08:00
B2G Bumper Bot
550b271b52 Bumping manifests a=b2g-bump 2015-11-10 14:54:44 -08:00
B2G Bumper Bot
03e9ba0cca Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/98f2ffabcc4d
Author: punamdahiya <punamdahiya@yahoo.com>
Desc: Merge pull request #33000 from punamdahiya/Bug1221650

Bug 1221650 - [Gallery] LazyLoad gaia-header.js

========

https://hg.mozilla.org/integration/gaia-central/rev/6d1b39dd6921
Author: Punam Dahiya <punamdahiya@yahoo.com>
Desc: Bug 1221650 - [Gallery] LazyLoad gaia-header.js
2015-11-10 14:53:18 -08:00
Mark Banner
3f3631e25d Bug 1223351 - Store a metrics event on the loop server if the data channel setup fails. r=Mardak 2015-11-10 21:25:51 +00:00
B2G Bumper Bot
d8d5b02185 Bumping manifests a=b2g-bump 2015-11-10 12:29:31 -08:00
Jordan Santell
c4f729fcfb Bug 1215954 - Add feature to save a heap snapshot from memory tool to
disk. r=fitzgen,vp
2015-11-10 11:53:55 -08:00
Brian Grinstead
57b222f23d Bug 1181852 - Use shared-head.js for devtools/client/shared;r=jryans 2015-11-10 11:48:51 -08:00
Kit Cambridge
1334e5ad60 Bug 1220337 - Don't show alternate notification actions on OS X 10.8. r=MattN 2015-11-10 11:23:13 -08:00
Marco Bonardo
065dceb3ac Bug 720589 - mMatchCounts may be accessed with a nonexisting index. r=neil 2015-11-10 20:18:24 +01:00
B2G Bumper Bot
d122fbd20c Bumping manifests a=b2g-bump 2015-11-10 11:16:41 -08:00
B2G Bumper Bot
0d779f0649 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/218023b067fd
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #33114 from michielbdejong/1218278-dataadapter-code-comments

Bug 1218278 - Improve DataAdapters code comments, r=ferjm

========

https://hg.mozilla.org/integration/gaia-central/rev/3a2737f80bff
Author: Michiel de Jong <mbdejong@mozilla.com>
Desc: Bug 1218278 - Improve DataAdapters code comments, r=ferjm
2015-11-10 11:15:17 -08:00
B2G Bumper Bot
fec057ec58 Bumping manifests a=b2g-bump 2015-11-10 10:16:57 -08:00
B2G Bumper Bot
affd07d4c2 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/1cf2d98d4c57
Author: David Flanagan <dflanagan@mozilla.com>
Desc: Merge pull request #33025 from russnicoletti/bug-1147871

Bug 1147871 - Intermittent video/test/unit/thumbnail_list_test.js fail r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/21966b721421
Author: Russ Nicoletti <rnicoletti@mozilla.com>
Desc: Bug 1147871 - Intermittent video/test/unit/thumbnail_list_test.js fail

========

https://hg.mozilla.org/integration/gaia-central/rev/0f80a2036585
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Merge pull request #33108 from etiennesegonzac/bug-1219635

Bug 1219635 - Implement *test_cards_view_kill_apps_with_two_apps.py* as an integration test in JavaScript r=sfoster

========

https://hg.mozilla.org/integration/gaia-central/rev/73229be5e716
Author: Etienne Segonzac <etienne@segonzac.info>
Desc: Bug 1219635 - Implement *test_cards_view_kill_apps_with_two_apps.py* as an integration test in JavaScript r=sfoster
2015-11-10 10:15:33 -08:00
Kit Cambridge
225634fee8 Bug 1220531 - Link to the Push notifications article on SUMO. r=MattN 2015-11-10 09:29:47 -08:00
B2G Bumper Bot
65157dd02a Bumping manifests a=b2g-bump 2015-11-10 09:24:36 -08:00