Commit Graph

324233 Commits

Author SHA1 Message Date
Corey Ford
5eef149568 Bug 897105 - Part 3: Keep sticky position layers fixed during async panning, within certain scroll ranges. r=roc 2013-09-11 21:24:32 -07:00
Corey Ford
69aaac73df Bug 897105 - Part 2: Add layer fields for sticky positioning. r=roc 2013-09-11 21:17:58 -07:00
Corey Ford
bcbedb574b Bug 897105 - Part 1: Add RectTyped::operator== to allow use in IPDL structs. r=roc 2013-09-11 21:09:43 -07:00
Douglas Crosher
848b25298d Bug 880204 - Asm.js: support constant global variables and make their loads hoistable. r=luke 2013-09-13 17:35:38 +10:00
Cykesiopka
5f525a4004 Bug 733644 - Make nsNSSComponent use mozilla::Preferences. r=keeler, sr=bsmith 2013-09-13 09:02:15 -04:00
David Rajchenbach-Teller
b7d42f8c7d Bug 910523 - about:home now takes into account async startup of SessionRestore;r=felipe 2013-09-13 14:58:05 +02:00
Bill McCloskey
36b12638f2 Bug 910523 - about:home tests now take into account async startup of SessionRestore;r=felipe 2013-09-13 14:58:02 +02:00
Hannes Verschore
d45fd3d258 Bug 915171 - IonMonkey: Remove bogus assertion, r=jandem 2013-09-13 13:55:00 +02:00
Jonathan Kew
ea068bced0 bug 906643 - fix nsTextFrame build bustage on a CLOSED TREE. r=bustage 2013-09-13 12:57:27 +01:00
Nathan Froyd
7dea9d195d Bug 915848 - copy modified check_spidermonkey_style.py to satisfy check-sync-dirs.py; r=bustage 2013-09-13 07:22:58 -04:00
Jan Varga
561b789fb3 Bug 915629 - Chrome doesn't need to check the indexedDB permission. r=bent 2013-09-13 13:19:25 +02:00
Nathan Froyd
9109fb60ff Bug 915848 - make check_spidermonkey_style.py work correctly with git; r=njn 2013-09-12 16:12:21 -04:00
Nathan Froyd
e879822603 Bug 915717 - reduce duplication in moz.build's emission of simple lists; r=gps 2013-09-12 11:26:22 -04:00
Nathan Froyd
117f140c46 Bug 909922 - don't pragma pack ipc message headers; r=bent
The IPC::Message header is surrounded by:

#pragma pack(push,2)
...
#pragma pack(pop)

which (at least on GCC) specifies that structure members defined lexically
within the pragma should be two-byte aligned, rather than the ABI's declared
alignment.

But for IPC::Message::Header, this is a silly requirement, as everything there
is four bytes; there's no reason to pack the members any tighter.  And packing
tighter means that strict alignment platforms (like ARM) need to use more
complex code for something as simple as storing to one of the members--like
when we set a message's request ID, over and over and over.  The current code
for setting a message's request ID on ARM looks like:

     264:	6863      	ldr	r3, [r4, #4]
     266:	696a      	ldr	r2, [r5, #20]
     268:	809a      	strh	r2, [r3, #4]
     26a:	0c12      	lsrs	r2, r2, #16
     26c:	80da      	strh	r2, [r3, #6]

With the patch, it looks like:

     264:	6863      	ldr	r3, [r4, #4]
     266:	696a      	ldr	r2, [r5, #20]
     268:	605a      	str	r2, [r3, #4]

Only four bytes, but multiplied over several hundred set_routing_id calls, it
saves some code size and runtime.  I verified that the header's length doesn't
change by looking at debug information.
2013-08-27 16:32:44 -04:00
Robert O'Callahan
defc38fb5c Bug 906643. Part 7: Hook up animation support for gfxSVGGlyphs. r=jfkthame
There's a few things mashed together in this patch:
-- Enable animations in glyph documents
-- Make gfxSVGGlyphsDocument monitor the document's refresh driver to detect
updates
-- Forward updates to the gfxFontEntry
2013-08-20 01:08:45 +12:00
Robert O'Callahan
1c69a44bd3 Bug 906643. Part 6: Add gfxFontEntry::NotifyGlyphsChanged, which calls new gfxFont::NotifyGlyphsChanged, which calls new gfxGlyphExtents::NotifyGlyphsChanged; these methods flush out existing glyph extents and notify all affected gfxUserFontGroups of the glyph changes. r=jfkthame 2013-08-20 01:08:45 +12:00
Robert O'Callahan
97e8e67a9e Bug 906643. Part 5.6: Make nsTextFrames register themselves as observers when they have animated glyphs (but only the text frames that are the start of a run of continuations using a particulr textrun). r=jfkthame 2013-09-02 16:30:10 +12:00
Robert O'Callahan
f163a5c915 Bug 906643. Part 5.2: Add gfxFont::GlyphChangeObserver. r=jfkthame 2013-09-02 16:30:10 +12:00
Robert O'Callahan
b123a36604 Bug 906643. Part 5: Add nsIPresShell::AddPostRefreshObserver/RemovePostRefreshObserver. r=mats 2013-08-26 11:57:45 +12:00
Robert O'Callahan
e75649fb2d Bug 906643. Part 4: Make each gfxFontEntry track its gfxFonts with SVG glyphs. r=jfkthame
--HG--
extra : rebase_source : cd2cbdc8f6722e71f523c3fbe19e515a0e44f043
2013-08-20 01:08:44 +12:00
Robert O'Callahan
9243c99ebb Bug 906643. Part 1: Add nsRefreshDriver::Add/Remove/PostRefreshObserver so we can receive notifications when a refresh has occurred, without triggering one. r=dbaron
--HG--
extra : rebase_source : fbfdd2678f4561f421fda2eb17e9e7ae8754f8d3
2013-08-20 01:08:44 +12:00
Jan de Mooij
d00023d255 Bug 913749 - Mark fallible unbox instructions as guards. r=h4writer
--HG--
extra : rebase_source : f064535983782dcd52791f977f16a21d83603381
2013-09-13 10:09:11 +02:00
Dave Hunt
cc8d27d8d0 Bug 811780 - Provide an option for creating a blank SD card image when running against an emulator. r=jgriffin 2013-09-13 00:47:13 -07:00
Malini Das
5ca5e5b0eb Bug 915658 - Add timestamp data to Marionette touch event logging, r=jgriffin 2013-09-13 09:33:41 +02:00
Masayuki Nakano
8e7c8b28e5 Bug 768287 Initialize key event's modifier state on GTK with next XKB state change event r=karlt 2013-09-13 16:10:49 +09:00
Jonathan Kew
6ba5a7dde9 bug 872487 - remove fails-if() annotations from currently-disabled tests that no longer fail on android/b2g. no_r=me 2013-09-13 07:56:38 +01:00
Nicholas Nethercote
cc291a0693 Bug 915482 (part 4) - Minimize vm/Shape-inl.h includes. r=terrence.
--HG--
extra : rebase_source : 973eb6668f38be4261ab3eef0b3645473bd3ebc2
2013-09-12 17:44:47 -07:00
Edwin Flores
060ca05acc Bug 798843 - Add README for generating fonts for SVG in OpenType reftests r=dbaron 2013-09-13 07:08:56 +01:00
Jonathan Kew
9a04636b04 Bug 798843 - Test to check that context-* attribute values are not valid when gfx.font-rendering.opentype_svg.enabled pref is false r=dbaron 2013-05-16 14:35:15 +12:00
Jonathan Kew
fd01c609d8 Bug 798843 - Rename -moz-objectFill, -moz-objectStroke, -moz-objectValue to context-fill, context-stroke, context-value r=dbaron
* * *
bug 798843 - recompile svg.woff font to pick up the updated glyph definitions
* * *
bug 798843 - update property_database.js to match the new property names
2013-05-16 14:35:15 +12:00
Edwin Flores
b10976f9b2 Bug 798843 - Replace instances of 'object' with 'context' to match change in CSS values r=roc 2013-05-16 14:35:12 +12:00
Sotaro Ikeda
59015a6eb6 Bug 912134 - allocate texture per CompositableHost. r=jmuizelaar,bjacob
The fundamental change of approach in this patch is that now the temporary
texture is per-compositable.

Originally, the temporary texture was per-TextureHost. That was too many
temporary textures.  With Nical's work in bug 875211, that switched to having a
temporary texture per compositor only. That's what turned out to be too few.
Now we have one per compositable which is fewer than one per TextureHost,
because e.g. a ContentHost, which is a single Compositable, may have 2
TextureHosts to implement double-buffering.
2013-09-12 22:39:26 -04:00
Boris Zbarsky
7f0a897989 Bug 915419. Add support for "object" types in owning unions (so union return values and unions in dictionaries and sequences. r=dzbarsky, smaug
Adds RootedUnion and NullableRootedUnion structs that are used on the
stack for union return values when the union needs rooting.  It also
adds a TraceUnion method on union return values, which is called by
(Nullable)RootedUnion or by dictionary tracing.  TraceUnion traces
typed array and object members of unions (the only things unions can
contain so far that might need tracing).  Union return values are
changed to store raw JSObject* or typed array structs instead of
Rooted versions of both; the tracing is now handled via TraceUnion.

The wrapping code for dictionary arguments to constructors is fixed to
actually work.  This required adding GetAs* methods to union return
values that return references to the internal data.

The SetToObject method is adjusted to actually work for union return
value structs and not assume it's being generated for a
union-conversion struct, and we now generate SetToObject methods as
needed for union return values.
2013-09-12 22:34:16 -04:00
Chris Pearce
03b4450f4b Bug 915958 - Automatically Finish() MediaQueues, so that each backend doesn't need to remember to do it. r=edwin 2013-09-13 14:33:54 +12:00
Nicholas Cameron
a48d09aed2 Bug 915944. Don't set TEXTURE_DEALLOCATE_HOST for deprecated canvas clients. r=mattwoodrow 2013-09-13 14:33:07 +12:00
Ryan VanderMeulen
47d90bb47f Merge m-c to inbound. 2013-09-12 22:30:22 -04:00
Ryan VanderMeulen
fd143fc064 Merge m-c to b2g-inbound. 2013-09-12 20:41:54 -04:00
Ryan VanderMeulen
e4754304bc Merge inbound to m-c. 2013-09-12 20:37:35 -04:00
Gaia Pushbot
750ed3c5f1 Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/44b5d39b37b1
Author: Eitan Isaacson <eitan@monotonous.org>
Desc: Bug 914886 - [Settings] Use aria-disabled instead of disabled class. r=kaze

Relanding after linter error resolved.
2013-09-12 16:45:23 -07:00
Dan Gohman
d8c1b10be8 Bug 915855 - SpiderMonkey: Clean up "const static" to "static const". r=terrence 2013-09-12 16:38:40 -07:00
Brian Hackett
602e976657 Bug 915473 - Distinguish stack type sets from compiler-created temporary type sets, r=jandem. 2013-09-12 18:30:03 -06:00
Gaia Pushbot
421875b96b Bumping gaia.json for 4 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/21d0f4126507
Author: Kyle Machulis <kyle@nonpolynomial.com>
Desc: Merge pull request #12121 from qdot/891725-cellbroadcast-customization

Bug 891725 - Added unit tests for cell broadcast and voicemail customiza...

========

https://hg.mozilla.org/integration/gaia-central/rev/d0c799717e7e
Author: Kyle Machulis <kyle@nonpolynomial.com>
Desc: Bug 891725 - Added unit tests for cell broadcast and voicemail customization

========

https://hg.mozilla.org/integration/gaia-central/rev/f409d2795cb1
Author: Kyle Machulis <kyle@nonpolynomial.com>
Desc: Bug 898409, 898410: Fixes to operator variant

Fix writable property of navigator.mozPower, remove unused stubPower variable
Change operator variant helper from mobileConnection to iccHelper
mobileConnection seems to be unstable when the sim card is locked. This patch changes operator variant to use IccHelper for fetching mcc/mnc instead.

========

https://hg.mozilla.org/integration/gaia-central/rev/bab155b06eb6
Author: Kyle Machulis <kyle@nonpolynomial.com>
Desc: Revert "Revert "Merge pull request #12000 from nullaus/operator-variant""

This reverts commit 8b15a3359fc30f3703808763e976cfcab3812724.
2013-09-12 16:30:24 -07:00
Gaia Pushbot
3d61d696de Bumping gaia.json for 1 gaia-central revision(s)
========

https://hg.mozilla.org/integration/gaia-central/rev/4ef712b02d79
Author: Anthony Ricaud <anthony@ricaud.me>
Desc: Revert "Bug 914886 - [Settings] Use aria-disabled instead of disabled class"

This reverts commit ab7d53c48864e04332df1b1d396457d1d57397dd because it breaks the linter
2013-09-12 16:20:22 -07:00
Ryan VanderMeulen
b450a960da Backed out changeset e62454ab7c04 (bug 893677) for mochitest-bc timeouts. 2013-09-12 18:09:56 -04:00
Shane Caraveo
36ce0d7f15 bug 915835 fix leak of event handler, r=felipe 2013-09-12 14:39:33 -07:00
Dão Gottwald
1dc573c140 Bug 821687 - Status panel should be attached to the content area without overlapping surrounding chrome. r=mdeboer
--HG--
extra : rebase_source : aa71054495dde13db01dad0db5a1c62f028fdba9
2013-09-12 23:36:05 +02:00
Marina Samuel
c228223118 Bug 908068 - Specifically check for successful login before displaying the 'connected' screen for sync. r=ally 2013-09-12 17:33:51 -04:00
Sid Stamm
503b097db2 bug 836922 - disable new multiple CSP policy tests on b2g because the observer service is not working. r=ryanvm 2013-09-12 11:37:36 -07:00
Daniel Holbert
67aafb5fe7 (no bug) fix a few s/it's/its/ typos in nsIFrame.h header-comments. DONTBUILD 2013-09-12 11:28:46 -07:00
Benjamin Smedberg
309e25e5aa Bug 800347 - Try clearing RPCChannel in the destructor so that the dequeue task is cancelled properly, r=dvander 2013-09-12 14:24:17 -04:00