Commit Graph

466567 Commits

Author SHA1 Message Date
Mike Hommey
9ee28498c9 Bug 1256988 - Remove MOZ_WIDGET_GTK2 define. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
f5e10530d9 Bug 1256988 - Fix #endif comments for MOZ_WIDGET_GTK. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
1e802dcbc4 Bug 1256988 - Remove duplicate gfx.content.azure.backends settings in all.js. r=chmanchester
They are useless because they replicate what is already set in the #else
case above them.
2016-03-17 06:49:44 +09:00
Mike Hommey
7f131dbc35 Bug 1256988 - Replace tests on MOZ_ENABLE_GTK with tests on MOZ_WIDGET_TOOLKIT containing gtk. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
45e34d9474 Bug 1256988 - Replace tests on MOZ_ENABLE_GTK3 with tests on MOZ_WIDGET_TOOLKIT==gtk3. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
2360b9887b Bug 1256988 - Replace tests on MOZ_ENABLE_GTK2 with tests on MOZ_WIDGET_TOOLKIT==gtk2. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
b6f701b9e1 Bug 1256988 - Move MOZ_WIDGET_TOOLKIT to moz.configure. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
0366070f0d Bug 1256988 - Move --with-gonk to moz.configure. r=chmanchester 2016-03-17 06:49:44 +09:00
Mike Hommey
b9c63e7503 Bug 1257051 - Use separate target triplets for iOS and OSX. r=ted
This aligns with the triplets used by clang/llvm. Technically, this
won't break iOS builds still using -darwin triplets until we move
MOZ_IOS_SDK to moz.configure and actively reject non iOS targets with
the iOS sdk.

Also allow to distinguish iOS and OSX with target.os.
2016-03-17 06:49:44 +09:00
Benoit Girard
26e520518f Bug 1257314 - Properly lock in IPC PeekMessages. r=dvander
MozReview-Commit-ID: 8iUVhiN9Ksk

--HG--
extra : rebase_source : 294ac0a929ef5fcb889d5fbab4ecacdcbc9ffdf0
2016-03-16 17:15:38 -04:00
L. David Baron
fef3d844c0 Bug 1256745 - Cancel the DidPaint timer in SetShell(nullptr). r=mattwoodrow
MozReview-Commit-ID: KwtJD4AywX1
2016-03-16 13:47:41 -07:00
Eitan Isaacson
88044aea24 Bug 1254738 - Normalize speech rate for speech dispatcher. r=smaug
MozReview-Commit-ID: 79OuII34vz7
2016-03-16 13:46:12 -07:00
Kyle Huey
171ac8799b Bug 1257042: Remove the worker descriptor for PushEvent and PushMessageData. r=bz 2016-03-16 13:44:24 -07:00
Eitan Isaacson
19dc2d2aab Bug 1256521 - Normalize speech rate in Windows. r=smaug
MozReview-Commit-ID: EuQAqfoxwmo
2016-03-16 13:42:50 -07:00
Jakob Stoklund Olesen
7cb51cc5e3 Bug 1256945 - Coerce SIMD lane indexes with ToNumber(). r=bbouvier
The SIMDToLane() function in the SIMD.js specification uses ToNumber() to
coerce lane index arguments to a number before checking the the index is an
integer in range.

Add an ArgumentToLaneIndex() function to SIMD.cpp that implements the same
semantics. This function throws a RangeError if the coerced argument is not
integral or out of range.

Update tests to match the new semantics. The differences are:

- More values are accepted as lane indexes (null, true, false, "5.0", ...).
- A TypeError is only thrown if ToNumber fails. If the argument can be coerced
  to a number, a RangeError is thrown if other checks fail.

Fix the testShuffleForType() test in ests/ecma_7/SIMD/swizzle-shuffle.js which
should have been calling `shuffle` but was calling `swizzle`.

MozReview-Commit-ID: 7w5KhWwKmeF

--HG--
extra : rebase_source : 1bedc9df4c157080be53b356c7f31f7588c3bceb
2016-03-16 10:15:35 -07:00
Felipe Gomes
dc502787f6 Bug 1257251 - Annotate e10s cohort in crash report. r=Mossop
MozReview-Commit-ID: VccSJX6CdV
2016-03-16 17:32:02 -03:00
Felipe Gomes
051df56da7 Bug 1255013 - Tag disqualified cohorts in e10s staged rollout. r=Mossop
MozReview-Commit-ID: 98ChGuy80oN
2016-03-16 17:31:47 -03:00
Felipe Gomes
cfc7a4fb43 Bug 1257242 - Improve RTL checks to actually check for RTL instead of using a hardcoded list. r=jimm
This does the much more correct check instead of relying on the list proposed in bug 1234673.

MozReview-Commit-ID: 5yRd4NhwjSd
2016-03-16 17:31:31 -03:00
Felipe Gomes
7ff0e41628 Bug 1257242 - Split the ::BrowserTabsRemoteAutostart() function into two parts, to allow for the blocking policies to be checked independently from the prefs checks. r=jimm
The behavior of ::BrowserTabsRemoteAutostart() shouldn't change, meaning that every result remains the same. The new getter can be accessed by JS through Services.appinfo.multiprocessBlockPolicy

MozReview-Commit-ID: 62PpbeJcMCI
2016-03-16 17:31:14 -03:00
Gregory Szorc
4ab279264e Bug 1257036 - Disable C4302 to unblock compilation on VS2015; r=bobowen
As part of unblocking building with VS2015u1 in automation, I'm mass
disabling compiler warnings that are turned into errors. This is not
the preferred mechanism to fix compilation warnings. But the warning
occurs in third party code, so my hands are tied.

MozReview-Commit-ID: A0UF2RHJzVo

--HG--
extra : rebase_source : 3fc5300f6f67274162f4d65fd83eb9c18b4bf716
2016-03-16 13:27:59 -07:00
Gregory Szorc
c45a901dcb Bug 1257040 - Disable C4577 to unblock compilation on VS2015; r=jorendorff
As part of unblocking building with VS2015u1 in automation, I'm mass
disabling compiler warnings that are turned into errors. This is not
the preferred mechanism to fix compilation warnings. So hopefully
this patch never lands because someone insists of fixing the underlying
problem instead. But if it does land, hopefully the workaround is
only temporary. That being said, the warnings this patch masks are
in an included ICU header, which is a 3rd party project. So our hands
appear tied.

MozReview-Commit-ID: FHzp6v5yUKG

--HG--
extra : rebase_source : cd22e81394ce7e537fb8cd93a3ae62dcb99b8567
2016-03-14 23:23:34 -07:00
Kim Brown
14a79b2058 Bug 1130979 - Added ANON constant to By class and changed hard-coded values in test file; r=maja_zf
MozReview-Commit-ID: AOsb6l9UpVR

--HG--
extra : rebase_source : b5f41a4e42a3aa76eaf8a2fb5e27882090e8fb19
2016-03-12 13:32:46 -05:00
Kim Brown
922993e071 Bug 1130979 - Changed hard-coded values to constants from By; r=maja_zf
MozReview-Commit-ID: IqVyYQSCT3J

--HG--
extra : rebase_source : d21d156ff640b6bdb5d442073b65692f1534421c
2016-03-11 22:22:36 -05:00
Blake Kaplan
adba9c694d Bug 1254856 - Add a mochitest to ensure that we send the proper cookies. r=ckerschb 2016-03-16 12:58:56 -07:00
Gregory Szorc
432a47934a Bug 1253707 - Script to generate visual studio toolchain archive; r=ted
Previously, Windows toolchains and related dependencies (SDKs, etc)
were installed on Windows builders by people responsible for
maintaining those machines.

This commit takes a step in a new direction. We introduce a
script (complete with documentation) that can produce a zip
archive (or any archive format if people want to implement
support) of the toolchain files. Basically, you install
Visual Studio 2015 Community, run the script, and produce
a self-contained zip file containing everything from Microsoft
you need to build Firefox. With a copy of this archive and
an installation of MozillaBuild, it is possible to build
Firefox on a fresh Windows installation. No time-consuming
Visual Studio installation needed.

The goal is to upload these archives to tooltool and have
our Windows builders download and extract them at run-time.
At which time, we can remove all the other Visual Studio
and SDK files from builders because they don't need to be
baked into the image.

We may find tooltool's caching isn't good enough and we have
to more aggressively caching the standalone toolchain files.
But that is a problem for another day. Whatever happens,
we'll need the functionality in this script to produce
a self-contained archive of the toolchain.

There are certainly files in the produced archive that aren't
needed. I think perfect is the enemy of done and we can prune
the archive over time, if wanted.

MozReview-Commit-ID: EckEK1a6vA3

--HG--
extra : rebase_source : c328be792b2bfb4b3cb8acb50e4868277cb59974
extra : source : 4c980771e574e899a1b05319ad11fb6cffb00087
2016-03-11 15:00:02 -08:00
Sebastian Hengst
c213b3dd0c Backed out changeset 06101225c145 (bug 1257042) for bustage. r=backout on a CLOSED TREE 2016-03-16 20:30:32 +01:00
Timothy Nikkel
cc2e20ef2c Bug 1255675. Add very basic reftests that test our downscale during decode code for every image format we support.
Some fuzz is necessary of course, but these tests catch this bug, so they should be successful in ensuring basically functionality isn't regressed.
2016-03-16 14:10:31 -05:00
Kyle Huey
24341cb722 Bug 1257042: Remove the worker descriptor for PushEvent and PushMessageData. r=bz 2016-03-16 11:51:11 -07:00
Kyle Huey
9b06834782 Bug 1257039: Remove the worker descriptor for FileReaderSync. r=bz 2016-03-16 11:51:11 -07:00
Kyle Huey
348998b290 Bug 1257038: Remove the worker descriptor for WorkerLocation. r=bz
--HG--
rename : dom/workers/Location.cpp => dom/workers/WorkerLocation.cpp
rename : dom/workers/Location.h => dom/workers/WorkerLocation.h
2016-03-16 11:51:11 -07:00
Kyle Huey
d11b9db617 Bug 1257032: Make files in dom/workers actually build without unification. r=baku 2016-03-16 11:51:11 -07:00
Sebastian Hengst
d30e487246 Backed out changeset 6348a779de3b (bug 1245355) for leaking windows and a docshell in its new test browser_ext_tabs_getAllInWindow.js. r=backout 2016-03-16 19:34:08 +01:00
Benoit Girard
dec95787f8 Bug 1256408 - Add graphics microbenchmarking. r=mstange
MozReview-Commit-ID: H4IRZuLy7do

--HG--
extra : rebase_source : 8eed4669b59496370dbc47d32e2696de60ea43f2
2016-03-16 14:20:33 -04:00
Ryan VanderMeulen
282499897a Bug 1254826 - Annotate bug441782-3.html as passing on WinXP. r=ehsan
--HG--
extra : rebase_source : 28d9aaa8191708fe146dc6aee23edebc8477e24f
2016-03-16 14:26:03 -04:00
Jim Chen
5252e0a626 Bug 1255586 - Add test cases for more input types in testInputConnection; r=esawin
Add test cases for text areas, content editables, and design mode
editors.
2016-03-16 14:20:30 -04:00
Jim Chen
ae409c5147 Bug 1254629 - Let query events fail when content root is wrong; r=masayuki
Make query events fail (including when caching selection) if the queried
content root is different from what we expected.

Also, introduce a fix-up to the selection fix in test_imestate.html.
2016-03-16 14:20:30 -04:00
Olivier Yiptong
fb47188c38 Bug 1239118 - Send prefs to Remote Newtab page using WebChannel r=ursula
MozReview-Commit-ID: CQQQmgrXSDt

--HG--
extra : rebase_source : fafebd3deaaff3a6afb1b211c58bd5fed023efc5
2016-03-03 22:20:23 -05:00
Olivier Yiptong
9f92cc4921 Bug 1239118 - Export an object named after module in NewTabRemoteResource r=ursula
MozReview-Commit-ID: EB7Or6jhoN7

--HG--
extra : rebase_source : 51aca10c21bc6ae5310c5568f866039d27c7a5a3
2016-03-03 15:51:38 -05:00
David Keeler
d27e176906 bug 1236964 - enable Certum Trusted Network CA 2 root certificate for EV treatment r=jcj
MozReview-Commit-ID: 8QlBgAdXjlm

--HG--
extra : rebase_source : 07affb67f289f9d460e3eac147dcd44945da182d
2016-03-15 16:08:15 -07:00
William Chen
2d5b3a7771 Bug 1246066 - Clear PushService timeout tasks on uninitialization. r=kitcambridge 2016-03-16 10:03:02 -07:00
Andrea Marchesini
fa194bc4cd Bug 1257105 - test_resize_move_windows.html should use Promise, r=ehsan 2016-03-16 17:51:46 +01:00
Boris Zbarsky
44609a92c2 Bug 1256419. Null-check our nsDOMWindowList before trying to get its length. r=smaug 2016-03-16 12:40:56 -04:00
Sebastian Hengst
0c4628775b Bug 1253645 - Implement browser.extension.isAllowedIncognitoAccess. Followup: Add ; to fix eslint error. r=eslintfix 2016-03-16 17:38:41 +01:00
nagma
d854de1353 Bug 1255051 - Remove skip_under_xvfb from firefox-ui-tests; r=maja_zf
MozReview-Commit-ID: 5orLGNjaHtw

--HG--
extra : rebase_source : fb598e5bfc03fe64196176e0705fa00fe812face
2016-03-15 20:49:37 -04:00
Botond Ballo
7d02dd23e3 Bug 1247964 - Allow InputBlockState::SetScrolledApzc to accept new APZC when it is an ancestor of the current APZC r=kats 2016-03-16 09:22:43 -07:00
Dustin J. Mitchell
a4d714a39f Backed out 2 changesets (bug 1231320)
Backed out changeset a37a5bccf978 (bug 1231320)
Backed out changeset 0e58a9d3ca62 (bug 1231320)

MozReview-Commit-ID: 7OKDsH17fRI

--HG--
extra : rebase_source : a1d18ea6494b3c8dfc621720a5f9b957d70432fb
2016-03-16 16:19:06 +00:00
David Keeler
fceae4c33d bug 1256495 - temporarily check build-time-generated PSM xpcshell test certificates in to the tree r=Cykesiopka
MozReview-Commit-ID: GIJgI4mFpGL

--HG--
extra : rebase_source : 143f72f3c8d6c0ac41151b9db38bec2fbaacd76b
2016-03-14 17:30:36 -07:00
Myk Melez
b9e411fe2d Bug 1257011 - remove obsolete webapps-notification-icon style rule; r=gijs 2016-03-16 09:19:23 -07:00
Matthew Wein
842590013e Bug 1245355 - Add a unit test for tabs.getAllInWindow. r=kmag
MozReview-Commit-ID: 5wVRCLdCuq9

--HG--
extra : transplant_source : %D8%81M%1Fn%04%D4%09%87%C2%1C%FA%3E%F9z%05%E2%7C%AF%E0
2016-03-15 12:01:40 +01:00
Christopher Grebs
4a5d71dedf Bug 1253645 - Implement browser.extension.isAllowedIncognitoAccess. r=kmag
MozReview-Commit-ID: HaM0GJrappR

--HG--
extra : transplant_source : %D1%ACkD%E3A%E4%A0cg%ED%7E%C7%1Eh%28M%2C%A6%D8
2016-03-14 12:28:49 +01:00