Commit Graph

465009 Commits

Author SHA1 Message Date
Matthew Noorenberghe
b0a3337efd Bug 1251092 - Move password manager mochitest-chrome tests to a chrome subdirectory. r=dolske
MozReview-Commit-ID: JHIaCJLjdBt

--HG--
rename : toolkit/components/passwordmgr/test/chrome.ini => toolkit/components/passwordmgr/test/chrome/chrome.ini
rename : toolkit/components/passwordmgr/test/test_formless_autofill.html => toolkit/components/passwordmgr/test/chrome/test_formless_autofill.html
rename : toolkit/components/passwordmgr/test/test_formless_submit.html => toolkit/components/passwordmgr/test/chrome/test_formless_submit.html
rename : toolkit/components/passwordmgr/test/test_privbrowsing_perwindowpb.html => toolkit/components/passwordmgr/test/chrome/test_privbrowsing_perwindowpb.html
2016-03-09 15:29:05 -08:00
Matthew Noorenberghe
4916b4f8c6 Bug 1251092 - Cleanup function comments and undeclared variable in pwmgr_common.js. r=dolske
MozReview-Commit-ID: 5YFPrr584aD
2016-03-09 15:29:00 -08:00
Matthew Noorenberghe
4a12dde69b Bug 1251092 - Fix inconsistent indentation in pwmgr_common.js. r=dolske
MozReview-Commit-ID: 7SMcyyjt1QS
2016-03-09 15:28:55 -08:00
Matthew Noorenberghe
70da2ea8f6 Bug 1251139 - Follow-up to properly rebase over bug 1153128. r=me
on a CLOSED TREE

MozReview-Commit-ID: 35xb0uBoOrf
2016-03-09 14:53:52 -08:00
Ting-Yu Chou
92314af9cb Bug 1249226 - Use weak reference to keep popup's previous focus to avoid leak. r=neil
MozReview-Commit-ID: 8VUexyKMbJr
2016-03-09 10:54:04 +08:00
bsilverberg
7b72d7a595 Bug 1252303 - Creating an alarm should clear any existing alarms with the same name, r=kmag
MozReview-Commit-ID: 7ZObDDeWVT0
2016-03-08 14:03:41 -05:00
Andrew Swan
1860156d34 Bug 1245599 - Implement chrome.downloads.onCreated r=kmag
MozReview-Commit-ID: 53yhKZYHDrD
2016-03-07 16:54:08 -08:00
Jared Wein
f26bab0327 Bug 1246276 - Notification/Push Permission might be interpreted as a warning logo. r=shorlander
MozReview-Commit-ID: 3nFzWjicwd4
2016-02-24 13:25:48 -05:00
Nick Alexander
65d4c28a45 Bug 1252928 - Part 3: Replace android-gradle-build-dependencies with android-api-15-gradle-dependencies. r=dustin
The existing task's outcome is best achieved with a special purpose
build task, so here it is.

MozReview-Commit-ID: 3gYnAb69TdK

--HG--
rename : mobile/android/config/mozconfigs/android-api-15-frontend/nightly => mobile/android/config/mozconfigs/android-api-15-gradle-dependencies/nightly
rename : mobile/android/config/tooltool-manifests/android-frontend/releng.manifest => mobile/android/config/tooltool-manifests/android-gradle-dependencies/releng.manifest
extra : rebase_source : 252c283553d64bac17c2b922773023a349c297ea
extra : histedit_source : 2d8becbcdfa5d37829552e55b50fb7f9cbf56dea
2016-03-08 13:06:59 -08:00
Nick Alexander
1dbcfec457 Bug 1252928 - Part 2: Turn android-gradle-build into a desktop-build clone. r=dustin
This container formerly defined a special Gradle project for fetching
dependencies.  This patch lays the ground-work to use the in-tree
Gradle project instead.  Using the in-tree project looks like first
starting a local Nexus repository to collect downloaded dependencies
(before.sh); then running a build which populates that repository; and
then packaging up the downloaded dependencies (after.sh).  The patch
after this will define the build which populates the repository.

Sadly there's no easy way to *inherit* from desktop-build, so this is
a copy-paste-modify clone.

MozReview-Commit-ID: Dd5Hj8hkJVk

--HG--
extra : rebase_source : dcfe245b23eb28e99b1506eebe053142c9e242b3
extra : histedit_source : f21014636de958c5ddf27ca2a1eb156e3c88bd78
2016-03-08 11:42:56 -08:00
Nick Alexander
dedaa7d47c Bug 1252928 - Part 1: Use Jake Wharton's sdk-manager-plugin in Fennec's Gradle configuration. r=sebastian
This is a version produced locally from
1d07987217.
I used |./gradlew install| and then copied the pieces out of ~/.m2/repository.

Local builders should never download using this plugin, since |mach configure|
ensures that all the relevant pieces can already be found.  It's just useful in
automation; and as an eventual replacement for chunks of |mach bootstrap|.

MozReview-Commit-ID: 9JiFe0xLr99

--HG--
extra : rebase_source : 5bbe5ada7fce0d3e8a702a09da7ff70fd639dc67
extra : histedit_source : aa7049abefafd652b0db2bd03ab15310967e0ad0
2016-03-01 20:12:04 -08:00
Nick Alexander
ef89f5862d Bug 1254233 - Make cacerts an absolute symlink in repackaged Java. r=me,dustin
MozReview-Commit-ID: 9tlVuzTQTJc
2016-03-09 13:16:05 -08:00
Nick Alexander
58145966b8 Bug 1252666 - Part 3: Enable DOM Push API in Fennec Nightly. r=margaret
MozReview-Commit-ID: 19pThtRMN6r
2016-03-04 15:56:36 -08:00
Nick Alexander
5b9b896497 Bug 1252666 - Part 2: Use reflection to start PushService. r=margaret
The alternative is to define an interface and two conditional
implementations, and then build only one depending on MOZ_ANDROID_GCM.
That's what we did for Adjust, and it works; but it's awkward here
because the the PushService code is truly part of the browser, and the
conditional code is compiled very early (much earlier than the
browser).  (The Adjust library was built even earlier than the
existing conditional code, so this wasn't an issue.)  To work around
this, we'd want to add conditional code to the main browser, which
complicates the build.  This is expedient until we get to a proper
dependency injection scheme (for example, Dagger).

MozReview-Commit-ID: 18usWz8oC3B
2016-03-07 14:37:57 -08:00
Nick Alexander
d8a65feef6 Bug 1252666 - Part 1: Mark Push* exposed in Fennec Nightly. r=ehsan
MozReview-Commit-ID: GM2YxeAZuVJ
2016-03-07 15:14:06 -08:00
Tim Nguyen
41e8d758e2 Bug 1253981 - Fix out of view breakpoint checkboxes in debugger. r=bgrins
MozReview-Commit-ID: IHM56SfHwjL
2016-03-09 21:13:57 +01:00
Xidorn Quan
1a40289667 Bug 729011 - Make fullscr-toggler not affect viewport size.
MozReview-Commit-ID: DRaMQIspykj
2016-03-09 12:13:47 -08:00
Matthew Noorenberghe
b539cc9f1b Bug 1251139 - Support running a function in the parent with loadChromeScript. r=jmaher
MozReview-Commit-ID: 3t7g2bjaFmA

--HG--
rename : testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript.html => testing/mochitest/tests/Harness_sanity/test_SpecialPowersLoadChromeScript_function.html
2016-03-09 12:11:44 -08:00
Krishna
469bc2bed3 Bug 1231655 - Remove GeckoApp.showButtonToast(). r=sebastian
MozReview-Commit-ID: K7uzUeHNaC2

--HG--
extra : amend_source : f32deca7572e7f5875f11daa6541188528fbafb7
2016-03-09 23:42:19 +08:00
cijo
2b6599ed5c Bug 1254965 - Remove unused Favicons.getSizedFaviconForPageFromCache(). r=sebastian
MozReview-Commit-ID: F7CsaPYIF9o

--HG--
extra : rebase_source : 67587eacab20f43d4207fb5f60c2e158a6ced91e
2016-03-09 16:55:56 +01:00
Margaret Leibovic
fd676ca818 Bug 1253339 - Remove about:feedback code. r=sebastian
MozReview-Commit-ID: 3ASVVlDiJph

--HG--
extra : rebase_source : bf3a9b10cd7c695ad2266132bc3ca900f8defdad
2016-03-03 12:57:54 -05:00
Eddy Bruel
399122456e Bug 1250896 - Refactor SourceActor to use protocol.js;r=jryans 2016-03-09 14:24:38 +01:00
Jalpreet Singh Nanda
d5530d2198 Bug 1193208 - Replace ColorUtils.getColor() with ContextCompat.getColor(). r=sebastian
MozReview-Commit-ID: 8ZRF3Kuc1Bl

--HG--
extra : rebase_source : 8d6250254ea389a5088d75489c904ac1d250945c
2016-03-09 12:41:11 +05:30
Mike de Boer
30ec141855 Bug 1245937: actually enable the test again. r=Standard8 2016-03-09 11:53:45 +01:00
Carsten "Tomcat" Book
c05d7720c4 Merge mozilla-central to fx-team 2016-03-09 11:48:28 +01:00
Carsten "Tomcat" Book
1ca11b97af merge mozilla-inbound to mozilla-central a=merge 2016-03-09 11:46:43 +01:00
Carsten "Tomcat" Book
269ed01cd3 merge fx-team to mozilla-central a=merge 2016-03-09 11:44:55 +01:00
Carsten "Tomcat" Book
3f5b3372e9 Backed out changeset 6d5004acc11c (bug 1245599) for ES failures 2016-03-09 11:24:06 +01:00
Jordan Santell
bf88202287 Bug 1251033 - Part 3 - Fix unmerged chunk from eb9b84702b2c. a=philor 2016-03-08 21:58:47 -08:00
Jean-Yves Avenard
b9f36401b9 Bug 1230265 - Mark constructor as explicit; r=me
ON A CLOSED TREE.

MozReview-Commit-ID: 1jCfP6OzCfH
2016-03-09 16:40:55 +11:00
ffxbld
2855108b28 No bug, Automated blocklist update from host bld-linux64-spot-223 - a=blocklist-update 2016-03-08 19:41:40 -08:00
ffxbld
3e380e6fa3 No bug, Automated HPKP preload list update from host bld-linux64-spot-223 - a=hpkp-update 2016-03-08 19:41:38 -08:00
ffxbld
a560947174 No bug, Automated HSTS preload list update from host bld-linux64-spot-223 - a=hsts-update 2016-03-08 19:41:36 -08:00
Wes Kocher
0fbf6c1476 merge inbound to m-c a=merge
MozReview-Commit-ID: BHxDQF6gIe3
2016-03-08 16:00:45 -08:00
Wes Kocher
be3094d2b6 Merge fx-team to central, a=merge
MozReview-Commit-ID: LEywWhbwbwl
2016-03-08 15:00:01 -08:00
Andreas Tolfsen
42c25b995a Bug 1254521 - Add return type docs for element.inViewport; r=automatedtester
MozReview-Commit-ID: Budv7EapTfo

--HG--
extra : rebase_source : 98d9684610b3f594a66a01228473b1a8d602024a
2016-03-08 13:53:00 +00:00
Andreas Tolfsen
26578b425f Bug 1254521 - Add return type docs for element.isVisible; r=automatedtester
MozReview-Commit-ID: 9tjnHPmYSdq

--HG--
extra : rebase_source : d51af3dd9760149f0b0a175b6daaf562bddb582d
2016-03-08 13:52:38 +00:00
Andreas Tolfsen
fedd17bd6b Bug 1251763 - Reduce repetition in test_findelement.py; r=automatedtester
MozReview-Commit-ID: utpbgMlajl

--HG--
extra : rebase_source : 6ad9ca035943b3165ae01d1a4acdb8cfe9cabbe7
2016-03-08 16:44:41 +00:00
Andreas Tolfsen
a9b5a85fc1 Bug 1251763 - Correct type check on singular returned elements; r=automatedtester
The return values from the different element search functions in searchFn
have inconsistent return types, and a null check is usually not what
we want.  In order to have findElement consistently return a no such
element error, we need to do a loose false test.

This bug has affected the findElement command when using the tag
name, name, class name, link text, and partial link text selectors.
Other selectors were unaffected.

MozReview-Commit-ID: C26R3YrqKyf

--HG--
extra : rebase_source : dc723ae147b9208b4274ffc4a5338f0107ddd0ed
2016-03-08 16:23:50 +00:00
Carsten "Tomcat" Book
5f63041330 merge fx-team to mozilla-central a=merge 2016-03-08 11:41:34 +01:00
Rail Aliiev
da94a314aa Bug 1254422 - Do not try to set S3 ACLs r=jlund a=release
MozReview-Commit-ID: 1RyB48KhFvD

--HG--
extra : source : d5370c00e1eb31a2f9de7750a0cb1747c277e1ed
2016-03-08 00:49:24 -05:00
Jim Blandy
629fcdc697 Bug 1254384: Remove support for ion-eager, baseline-eager, and dump-bytecode from js/src/jit-test harness. r=nbp
--HG--
extra : rebase_source : acb308d6a2809744080f0d52d509083790a5d9dd
2016-03-07 18:23:10 -08:00
Jim Blandy
b450cd68c7 Bug 1254384: Use generic shell switch syntax in js/src/jit-test tests. r=nbp
--HG--
extra : rebase_source : bc23497ccd5f42f80b44d45ea75e30e7dc5c6f29
2016-03-07 18:24:32 -08:00
Jean-Yves Avenard
d5b11db943 Bug 1230265 - Add codec agnostic benchmark; r=kentuckyfriedtakahe
The Benchmark class is now taking a MediaDataDemuxer argument. Options allow to decode any videos and measure the decoding speed.

MozReview-Commit-ID: C017I1cGqPL
2016-03-09 15:43:57 +11:00
Anthony Jones
c8300ee73e Bug 1230265 - Add VP9 benchmark telemetry; r=bsmedberg
MozReview-Commit-ID: 6ofvNqvkg0U
2016-03-09 15:43:39 +11:00
Anthony Jones
d00c420b2c Bug 1230265 - Benchmark VP9 decoder performance and enable VP9 on fast machines; r=jya
MozReview-Commit-ID: 4GhSLun9x6Z
2016-03-09 15:43:38 +11:00
Nicholas Nethercote
1d9d77e07a Backout c661f2c5cd87 and bf22fcece06e (from bug 1252639) because NSPR changes aren't supposed to land on mozilla-inbound.
--HG--
extra : rebase_source : 360a3cc50807b991a421e7d163d7d5442eef59e7
2016-03-09 15:36:02 +11:00
Matt Woodrow
b954395165 Bug 1251527 - Don't override visible regions for background-attachment:fixed. r=mstange
--HG--
extra : rebase_source : ed4d7bd065a75bc04ff515d1a8f94592ff777419
2016-03-09 17:35:48 +13:00
Heiher
54ab7fb9f0 Bug 1254369 - IonMonkey: MIPS: Clean up broken assertions. r=arai
---
 js/src/jit/mips-shared/Lowering-mips-shared.cpp | 2 --
 1 file changed, 2 deletions(-)
2016-03-09 12:34:59 +08:00
Heiher
0d2e971cf1 Bug 1254369 - IonMonkey: MIPS: Fix ma_b(Register, Imm32, wasm::JumpTarget) missing. r=arai
---
 js/src/jit/mips-shared/MacroAssembler-mips-shared.cpp | 3 +++
 1 file changed, 3 insertions(+)
2016-03-09 12:34:58 +08:00