Commit Graph

271254 Commits

Author SHA1 Message Date
Carsten "Tomcat" Book
d47bd77a6f Merge mozilla-central to fx-team 2015-11-05 12:17:28 +01:00
Carsten "Tomcat" Book
a06710379c merge mozilla-inbound to mozilla-central a=merge 2015-11-05 11:58:55 +01:00
Heiher
eaabacf46b 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
f7a338fbc6 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
5ec9757f0d merge fx-team to mozilla-central a=merge 2015-11-05 11:55:46 +01:00
J. Ryan Stinnett
8fde3b4836 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
fa1c70413c Bug 1182722 - Fix l10n-check on Windows. r=me on a CLOSED TREE 2015-11-04 22:44:30 -06:00
Nick Fitzgerald
52390ff970 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
6be8cc178e Bumping manifests a=b2g-bump 2015-11-04 10:27:33 -08:00
B2G Bumper Bot
6b26543d24 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
a69907ce56 Bumping manifests a=b2g-bump 2015-11-04 09:46:51 -08:00
Nicholas Nethercote
a4852a0e89 Bug 1221610 - Remove ToIntMargin(). r=jrmuizel.
It's now a no-op.
2015-11-04 09:40:16 -08:00
George Wright
43b955a8b9 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
de9ed9e9c9 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
95c852564a 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
2f15585149 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
83fa7b1a59 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
44a1fe3ce3 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
70fb56c1d8 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
f394949f7d 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
06d7f63996 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
5077151010 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
bb1ac7c59d Backed out changeset 89446bf8d6b8 (bug 1215167) for introducing a hazard 2015-11-04 16:16:59 -08:00
Wes Kocher
0ddb2490fe 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
467ada903a Backed out changeset 722e121f6ce6 (bug 1217080) for b2g build failures 2015-11-04 15:39:35 -08:00
B2G Bumper Bot
607f584681 Bumping manifests a=b2g-bump 2015-11-04 09:06:35 -08:00
B2G Bumper Bot
63d0a6ee4e 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
09a45b2360 Bumping manifests a=b2g-bump 2015-11-04 08:27:22 -08:00
B2G Bumper Bot
6aedaf772f 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
Patrick Brosset
1e7d82c7b8 Bug 1221249 - Eslint fixes to CubicBezierWidget.js; r=bgrins 2015-11-04 15:23:16 +01:00
Patrick Brosset
2d6d056d4e Bug 1221249 - Fix the cubic-bezier tooltip layout to avoid overflows; r=bgrins 2015-11-05 10:54:40 +01:00
B2G Bumper Bot
6261491a26 Bumping manifests a=b2g-bump 2015-11-04 04:17:32 -08:00
B2G Bumper Bot
84880546fc 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
97b6e25dff Merge mozilla-central to b2g-inbound 2015-11-04 12:45:40 +01:00
Carsten "Tomcat" Book
7fd446b11f merge mozilla-inbound to mozilla-central a=merge 2015-11-04 11:59:46 +01:00
Carsten "Tomcat" Book
cbc648b5fd merge fx-team to mozilla-central a=merge 2015-11-04 11:57:59 +01:00
Matt Woodrow
1d8018af89 Bug 1203199 - Bustage fix. CLOSED TREE 2015-11-04 16:51:22 +13:00
Matt Woodrow
d4ef333f6e Bug 1203199 - Fix driver range with blacklist to avoid blacklisting other OSes. 2015-11-04 16:17:00 +13:00
Kris Maglione
dfdec32242 Bug 1214058: Part 3 - Touch CLOBBER. r=trivial 2015-11-03 16:25:13 -08:00
Sean Stangl
24e061fa5a Bug 939157 - RotateLeft with shift of zero gives undefined behavior. r=Waldo 2015-11-03 14:25:48 -08:00
Bas Schouten
9e2d8fdf82 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
6b9d57c0ac 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
1741b762b7 Bug 1211708 Allow themes to specify XBL bindings even in unprivileged documents r=sicking 2015-11-04 22:31:46 +00:00
Kartikaya Gupta
f52fe38d2a 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
42c4a68330 Bumping manifests a=b2g-bump 2015-11-03 14:16:51 -08:00
B2G Bumper Bot
ca7e5cc673 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
a7bc9a3fd3 Bumping manifests a=b2g-bump 2015-11-03 12:17:22 -08:00
B2G Bumper Bot
5b0aa3c6a1 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
b0f79d4a2c Bumping manifests a=b2g-bump 2015-11-03 11:52:01 -08:00
B2G Bumper Bot
86a43289de 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