Commit Graph

271303 Commits

Author SHA1 Message Date
Carsten "Tomcat" Book
95a70b96f2 Merge mozilla-central to mozilla-inbound 2015-11-05 12:15:35 +01:00
Carsten "Tomcat" Book
a18239c9a4 merge mozilla-inbound to mozilla-central a=merge 2015-11-05 11:58:55 +01:00
Heiher
e6e5c1f750 Bug 1219515 - IonMonkey: Fix ThrowIfNotConstructing was not declared. r=evilpie
---
 js/src/proxy/ScriptedDirectProxyHandler.cpp | 2 ++
 1 file changed, 2 insertions(+)
2015-11-05 19:02:37 +08:00
Heiher
a2f870588c Bug 1220505 - IonMonkey: MIPS64: Fix workaround for Loongson3 in Assembler::bind. r=huangwenjun06
---
 js/src/jit/mips64/Assembler-mips64.cpp | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
2015-11-05 19:02:35 +08:00
Carsten "Tomcat" Book
cc0fd1b495 merge fx-team to mozilla-central a=merge 2015-11-05 11:55:46 +01:00
J. Ryan Stinnett
3b8c1877e6 Bug 1182722 - Add quotes for l10n-check on Windows. rs=glandium on a CLOSED TREE 2015-11-05 02:16:11 -06:00
J. Ryan Stinnett
dbb4b4b6ba Bug 1182722 - Fix l10n-check on Windows. r=me on a CLOSED TREE 2015-11-04 22:44:30 -06:00
Nick Fitzgerald
d1816e1f07 Bug 1221150 - Follow up: disable the browser_memory_no_auto_expand.js test on DEBUG builds; r=me CLOSED TREE 2015-11-04 19:09:29 -08:00
B2G Bumper Bot
0ce18ae0fa Bumping manifests a=b2g-bump 2015-11-04 10:27:33 -08:00
B2G Bumper Bot
4a2b7a695c Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/7136753530b8
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #32882 from Phoxygen/bug1171848-contact_caret_misplaced

Bug 1171848 - put scrollbar at the right position for textarea

========

https://hg.mozilla.org/integration/gaia-central/rev/4e17722e637a
Author: Augustin Trancart <augustin.trancart@phoxygen.com>
Desc: Bug 1171848 - put scrollbar at the right position for textarea

If you put a dir="auto" on an element, its direction is viewed as LTR
when it is empty, and the scrollbar is on the left. This is bug 1103011.
But here, we already have a unicode-bidi: -moz-plaintext on the element.
So we don't need any dir="auto" anyway.

========

https://hg.mozilla.org/integration/gaia-central/rev/2191fef5dd6d
Author: Zibi Braniecki <zibi@braniecki.net>
Desc: Merge pull request #32496 from zbraniecki/1170963-remove-l10n_date.js

Bug 1170963 - Remove l10n_date.js. r=stas,arcturus,gsvelto,salva,sfoster

========

https://hg.mozilla.org/integration/gaia-central/rev/9d52d5e79139
Author: Zibi Braniecki <gandalf@mozilla.com>
Desc: Bug 1170963 - Remove remaining calls to l10n_date in apps
2015-11-04 10:25:33 -08:00
B2G Bumper Bot
221ce6a06e Bumping manifests a=b2g-bump 2015-11-04 09:46:51 -08:00
Nicholas Nethercote
a43bfe69e9 Bug 1221610 - Remove ToIntMargin(). r=jrmuizel.
It's now a no-op.
2015-11-04 09:40:16 -08:00
George Wright
dea7b3fc9c Bug 1111892 - Ensure gdk_ungrab_pointer is always called in the correct process r=jimm 2015-11-04 16:46:10 -05:00
Daniel Holbert
fd0ea7dd8c Bug 1208635 part 3: Treat "-webkit-box" as a known CSS keyword, for better parsing performance. r=heycam 2015-11-04 17:59:54 -08:00
Daniel Holbert
05af7e63b0 Bug 1208635 part 2: Extend existing parser code for CSSUnprefixingService "-webkit-box" handling to also activate if native unprefixing is enabled. r=heycam 2015-11-04 17:59:52 -08:00
Daniel Holbert
3a1a6a545c Bug 1208635 part 1: Add support for several prefixed CSS properties associated with -webkit-box, as aliases for modern flexbox properties (and behind a pref). r=heycam
Specifically, this adds the following alias mappings:
  -webkit-box-flex          --> flex-grow
  -webkit-box-ordinal-group --> order
  -webkit-box-align         --> align-items
  -webkit-box-pack          --> justify-content
2015-11-04 17:59:51 -08:00
Timothy Nikkel
34a4267bbc Bug 1215977. Add a flag for GetNearestScrollable that makes fixed pos frames return the root scroll frame of their document. And make APZCCallbackHelper use it to restore previous behaviour. r=botond
We may want to do this for fixed pos frames in all documents (not just root documents). However, this patch only maintains the previous behaviour on purpose.
2015-11-04 19:51:03 -06:00
Timothy Nikkel
7bb57887a7 Bug 1215977. Only match the root scroll frame in GetNearestScrollableFrame if we encounter it. r=botond
Instead of returning the root scroll frame if we encountered the root frame (which is the parent of the root scroll frame).

This allows the use of GetNearestScrollableFrame to walk up the frame tree without getting into a infinite loop going from root scroll frame to root frame and back.

This regresses bug 1105823 in that fixed pos frames will no longer find the root scroll frame of their document. The next patch will fix that.

The only other type of frame that will be affected when calling GetNearestScrollableFrame are viewport (root) frames. However, the only user of SCROLLABLE_ALWAYS_MATCH_ROOT (APZCCallbackHelper) calls GetNearestScrollableFrame on the result of a hit test on a display list. Viewport frames never create any display items whose HitTest function could return the viewport frame.
2015-11-04 19:51:03 -06:00
Timothy Nikkel
1ff4279f91 Bug 1215974. In GetNearestScrollableFrame don't skip the root scroll frame if we are asked to always match the root scroll frame even if it doesn't WantAsyncScroll(). r=botond
SCROLLABLE_ALWAYS_MATCH_ROOT should take precendence over SCROLLABLE_ONLY_ASYNC_SCROLLABLE as if we fail to find the root scroll frame we will have no usable scroll frame at all.
2015-11-04 19:51:03 -06:00
Ralph Giles
1b6967d88b Bug 1189531 - Check for nullptr in convertTimeToDate. r=gerald
In current code it's not possible to pass nullptr, but there's
no harm in checking.

See also bug 1156891.
2015-11-04 14:43:00 -08:00
Ralph Giles
473bc6f78e Bug 1221656 - Update rust mp4parse to v0.1.4. r=kinetik
New upstream release.

- turn off debug trace messages by default.
- better rejection of bad ftyp boxes.
2015-11-04 10:15:00 -08:00
Ralph Giles
c0a2c43c8b Bug 1221656 - Copy mp4parse.h in update-rust.sh. r=kinetik
We had added this header manually at some point, but the script
wasn't updating it.

Also bump the default mp4parse version to the latest.
2015-11-04 10:14:00 -08:00
Wes Kocher
7de1bf13d9 Backed out changeset 89446bf8d6b8 (bug 1215167) for introducing a hazard 2015-11-04 16:16:59 -08:00
Wes Kocher
f51940c8e2 Backed out 3 changesets (bug 1176792) for WinXP/7 w(4) permafail
Backed out changeset 4d2f2e40bb5d (bug 1176792)
Backed out changeset 3de6f54e7f41 (bug 1176792)
Backed out changeset 887df043de31 (bug 1176792)
2015-11-04 15:42:38 -08:00
Wes Kocher
d5b2bb39e3 Backed out changeset 722e121f6ce6 (bug 1217080) for b2g build failures 2015-11-04 15:39:35 -08:00
B2G Bumper Bot
258e1b0fdf Bumping manifests a=b2g-bump 2015-11-04 09:06:35 -08:00
B2G Bumper Bot
e5547e6c65 Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/2f06ecfcb4b5
Author: Chris Lord <chrislord.net@gmail.com>
Desc: Merge pull request #32991 from Cwiiis/bug1221349-homescreen-exit-editmode-on-visibilitychange

Bug 1221349 - Exit edit mode when phone is locked. r=gmarty

========

https://hg.mozilla.org/integration/gaia-central/rev/fc17352e96c3
Author: Chris Lord <chrislord.net@gmail.com>
Desc: Bug 1221349 - Exit edit mode when phone is locked. r=gmarty

========

https://hg.mozilla.org/integration/gaia-central/rev/b2ff68fe1b07
Author: Chris Lord <chrislord.net@gmail.com>
Desc: Merge pull request #32978 from Cwiiis/bug1221195-homescreen-remove-system-xhr

Bug 1221195 - Remove unused systemXHR permission. r=gmarty

========

https://hg.mozilla.org/integration/gaia-central/rev/c0a37151f9a6
Author: Chris Lord <chrislord.net@gmail.com>
Desc: Bug 1221195 - Remove unused systemXHR permission. r=gmarty

========

https://hg.mozilla.org/integration/gaia-central/rev/9cc40db3820e
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Merge pull request #32993 from mikehenrty/bug-1179587-option-menu-test-fix

Bug 1179587 - Fix option menu test to be less racy

========

https://hg.mozilla.org/integration/gaia-central/rev/04095eeb6b10
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Bug 1179587 - Fix option menu test to be less racy
2015-11-04 09:04:33 -08:00
B2G Bumper Bot
12467a8759 Bumping manifests a=b2g-bump 2015-11-04 08:27:22 -08:00
B2G Bumper Bot
5840d79b68 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/0c8fb462b0e3
Author: Aleh Zasypkin <aleh.zasypkin@gmail.com>
Desc: Merge pull request #32736 from azasypkin/bug-1218091-bridge-libs

Bug 1218091 - [Messages][Performance] Use optimized Bridge libraries. r=schung

========

https://hg.mozilla.org/integration/gaia-central/rev/b437485f6921
Author: Aleh Zasypkin <azasypkin@mozilla.com>
Desc: Bug 1218091 - [Messages][Performance] Use optimized Bridge libraries. r=schung
2015-11-04 08:25:20 -08:00
B2G Bumper Bot
dfb8206e78 Bumping manifests a=b2g-bump 2015-11-04 04:17:32 -08:00
B2G Bumper Bot
c4388c2319 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/0d1a5871aa84
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Merge pull request #32973 from mikehenrty/bug-1117976-reenable-statusbar-test

Bug 1117976 - Re-enable ftu statusbar color test

========

https://hg.mozilla.org/integration/gaia-central/rev/f8aba62ebc8f
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Bug 1117976 - Re-enable ftu statusbar color test
2015-11-04 04:15:32 -08:00
Carsten "Tomcat" Book
841034fd1d Merge mozilla-central to b2g-inbound 2015-11-04 12:45:40 +01:00
Carsten "Tomcat" Book
fcf25e1eba merge mozilla-inbound to mozilla-central a=merge 2015-11-04 11:59:46 +01:00
Carsten "Tomcat" Book
19eae9b372 merge fx-team to mozilla-central a=merge 2015-11-04 11:57:59 +01:00
Matt Woodrow
c793f97a39 Bug 1203199 - Bustage fix. CLOSED TREE 2015-11-04 16:51:22 +13:00
Matt Woodrow
679376096a Bug 1203199 - Fix driver range with blacklist to avoid blacklisting other OSes. 2015-11-04 16:17:00 +13:00
Kris Maglione
564cd2c648 Bug 1214058: Part 3 - Touch CLOBBER. r=trivial 2015-11-03 16:25:13 -08:00
Sean Stangl
330969972a Bug 939157 - RotateLeft with shift of zero gives undefined behavior. r=Waldo 2015-11-03 14:25:48 -08:00
Bas Schouten
3c8330a3cc Bug 1220624: Make MaskSurface properly take into account the possibilities of partial uploads. r=jrmuizel 2015-11-05 00:05:26 +01:00
Jeff Muizelaar
e0b83207cb Bug 1217080. Move recycling functionality into RecyclingPlanarYCbCrImage. r=nical
This makes PlanarYCbCrImage abstract and moves the recycling functionality
into RecyclingPlanarYCbCrImage. This decreases the size of
SharedPlanarYCbCrImage and makes it possible for us to do part 3 of bug
1216644.
2015-11-04 17:40:02 -05:00
Neil Rashbrook
2a5d4dae27 Bug 1211708 Allow themes to specify XBL bindings even in unprivileged documents r=sicking 2015-11-04 22:31:46 +00:00
Kartikaya Gupta
43bd4aeb61 Bug 1141127 - When inside a slop area around the first touchstart, prevent touchmove events from going to content. r=botond 2015-11-04 17:09:52 -05:00
B2G Bumper Bot
c74601b86c Bumping manifests a=b2g-bump 2015-11-03 14:16:51 -08:00
B2G Bumper Bot
b1a9ee4061 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/44029d7d66e6
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #32945 from ferjm/bug1220541.bookmarks.collection.refresh.auth

Bug 1220541 - Require user authentication refresh when the bookmark c…

========

https://hg.mozilla.org/integration/gaia-central/rev/31ca4ab104f7
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Bug 1220541 - Require user authentication refresh when the bookmark collection checkbox is changed to true. r=yifan
2015-11-03 14:14:48 -08:00
B2G Bumper Bot
88d20e18aa Bumping manifests a=b2g-bump 2015-11-03 12:17:22 -08:00
B2G Bumper Bot
4d5bbe75f8 Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/f793021410f8
Author: Hubert Figuière <hub@figuiere.net>
Desc: Merge pull request #32442 from hfiguiere/bug1214652-innerhtml

Bug 1214652 - Part 1: fix the innerHTML unsafeness in the music specific files. r=justindarc

========

https://hg.mozilla.org/integration/gaia-central/rev/a4c16de300ac
Author: Hubert Figuière <hub@figuiere.net>
Desc: Bug 1214652 - Fix the innerHTML unsafeness in the music specific files.

========

https://hg.mozilla.org/integration/gaia-central/rev/13d30bc778ce
Author: punamdahiya <punamdahiya@yahoo.com>
Desc: Merge pull request #32976 from punamdahiya/Bug-1178290

Bug 1178290 - [Gallery] Use MediaFrame.maxImageDecodeSize to calculate output size in pick flow r=djf

========

https://hg.mozilla.org/integration/gaia-central/rev/053629d4d8d9
Author: Punam Dahiya <punamdahiya@yahoo.com>
Desc: Bug 1178290 - [Gallery] Use MediaFrame.maxImageDecodeSize to calculate output size in pick flow r=djf
2015-11-03 12:15:19 -08:00
B2G Bumper Bot
89081aa292 Bumping manifests a=b2g-bump 2015-11-03 11:52:01 -08:00
B2G Bumper Bot
7feeab81cc Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/36b76f262edb
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #32779 from ferjm/bug1217381.default.settings

Bug 1217381 - Go back to default collection settings on logout. r=michielbdejong, yifan

========

https://hg.mozilla.org/integration/gaia-central/rev/897d191b3259
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Bug 1217381 - Go back to default collection settings on logout. r=michielbdjong, yifan
2015-11-03 11:49:58 -08:00
B2G Bumper Bot
0975f9c49b Bumping manifests a=b2g-bump 2015-11-03 09:52:38 -08:00
B2G Bumper Bot
8feb42fd14 Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/89e34dc72e92
Author: No-Jun Park <npark@mozilla.com>
Desc: Merge pull request #32977 from npark-mozilla/1221180

Bug 1221180 - search btn locator is changed in Marketplace.

========

https://hg.mozilla.org/integration/gaia-central/rev/768ca0e23bd4
Author: No-Jun Park <npark@mozilla.com>
Desc: Bug 1221180 - search btn locator is changed in Marketplace.
2015-11-03 09:50:33 -08:00