Commit Graph

82043 Commits

Author SHA1 Message Date
Robert O'Callahan
937c660084 Bug 687972. More logging. 2011-12-09 17:48:40 +13:00
Chris Pearce
3ccf31c360 Bug 704010 - Disable test_fullscreen-api on WinXP cos it's purple most of the time. r=philor 2011-12-09 17:22:02 +13:00
Ehsan Akhgari
3c6aabb3df Bug 703444. Port SPS profiler to Windows. r=jmuizelaar
Some changes and fixes by Felipe Gomes. r=benwa,ehsan
2011-12-04 14:09:00 -05:00
Matt Brubeck
1c476ec47b Bug 708937 - Don't run Android-specific functions on non-Android platforms [r=mfinkle] 2011-12-08 20:12:01 -08:00
Brian Hackett
3298551d83 Ensure consistent warnings when accessing undefined names, bug 706240. r=waldo 2011-12-08 19:50:09 -08:00
Brian Hackett
aebe1b08d1 Avoid sharing owned base shapes between multiple shapes, bug 707842. r=luke 2011-12-08 19:37:17 -08:00
Christian Holler
3864a45f80 Ensure a consistent enumeration order when compiled in deterministic mode, bug 707017. r=luke 2011-12-08 19:28:36 -08:00
Brian Hackett
2c5ff8c206 Refine shape changes done to preserve teleporting invariant on prototype changes, bug 707515. r=luke 2011-12-08 19:23:31 -08:00
Matt Woodrow
409f8c5435 Bug 707563 - Convert vertex vector back into normal coordinate space before applying offset. r=Bas 2011-12-09 16:21:45 +13:00
Rafael Ávila de Espíndola
e0e8413832 Bug 708851 - Any gcc that supports firefox support -pipe. 2011-12-08 22:16:06 -05:00
Nicholas Nethercote
5ec7ee41ae Bug 704400 - Implement --enable-dmd. r=khuey. 2011-12-08 19:09:36 -08:00
David Anderson
c552bd7c52 Cap objects to a saner memory limit (bug 705855, r=dmandelin).
--HG--
extra : rebase_source : 551bbcee86d617f3a55a0a3274083ae54af4b294
2011-12-08 17:46:39 -08:00
Ed Morley
2d2a1931b2 Backout edecc56b7c80 and ad8aee962832 (bug 697479) for check-jit-test failures 2011-12-09 01:47:42 +00:00
Daniel Holbert
2253d1ae37 Bug 704482 followup: use nsGkAtoms instead of NS_NewAtom(), for efficiency & to avoid leaking. r=dbaron 2011-12-08 17:39:59 -08:00
Daniel Holbert
ba1e2df5d5 Bug 704482 patch 2: Further restrict event-based triggering of SMIL animations when scripts are disabled. r=birtles 2011-12-08 13:34:07 -08:00
Daniel Holbert
8e8e026462 Bug 708443 patch 2: disable debug output from animationPolling.js, and add emacs modeline. r=jwir3 2011-12-08 17:39:23 -08:00
Vivien Nicolas
b20e957d05 Bug 708538 - Use setTimeout(..., 0) to send the click event from touch.js. r=cjones 2011-12-09 09:16:11 +08:00
Vivien Nicolas
815de25fb8 Bug 708538 - Add a local http server on the device at http://localhost:8888. r=cjones
--HG--
rename : netwerk/test/httpserver/httpd.js => b2g/chrome/content/httpd.js
2011-12-09 09:16:03 +08:00
Philipp von Weitershausen
948e39c521 Bug 708528 - [Gonk] Add telephony components to package-manifest. r=cjones 2011-12-09 09:15:53 +08:00
Jason Orendorff
658f81deb0 Add missing file and fix for bug 697479 (rev ad8aee962832 added failing tests). No bug#, r=orange.
--HG--
extra : rebase_source : b104347e7f77f0856cdf1e83b923dfab74f1c8d9
2011-12-08 19:05:52 -06:00
Chris Leary
7a0e7a895a Bug 708873: Write unescape to match spec w/minor optimization. (r=Waldo) 2011-12-08 16:30:56 -08:00
Lucas Rocha
4acadc5eea Bug 708879 - Handle OOM error when loading thumbnail in about:home (r=mbrubeck) 2011-12-09 00:29:09 +00:00
Jason Orendorff
ef15d0fa6d Credit where it's due. No bug#, rs=jimb on IRC. 2011-12-08 17:59:59 -06:00
Jason Orendorff
09f636c792 Implement simple Map and Set builtins for JS. Bug 697479, r=jimb. 2011-12-08 17:54:51 -06:00
Jason Orendorff
6ec53cbaee Remove all mentions of imacros from js/src. Bug 708836, r=sfink. 2011-12-08 16:17:55 -06:00
Thomas Prip Vestergaard
ae09d526fb Bug 702926 - Remove spinner from AwesomeBar. r=margaret 2011-12-08 15:43:07 -08:00
Steven Michaud
21b4a248ea Bug 705931 - FF crashes when you leave/close page with many Java applets (using latest Apple Java updates). r=jst 2011-12-08 17:28:07 -06:00
Daniel Holbert
648631d434 back out 653fa694343e (Bug 704482) for leaks 2011-12-08 15:18:47 -08:00
Daniel Holbert
de4f4f5abb back out 326f9ad627b8 (Bug 704482) for leaks 2011-12-08 15:18:22 -08:00
Honza Bambas
103f3eb202 Bug 676349 - Implement high-resolution platform timers for the Windows platform, r=robarnold 2011-12-09 00:14:42 +01:00
Brandon Sterne
e2e12895f0 remove unused variable introduced by bug 702439, r=me 2011-12-08 14:59:17 -08:00
Jim Blandy
be2a34ce64 Bug 708838: Use findReferences instead of countHeap to make js1_8/extensions/regress-422269.js fail less randomly. r=jwalden
The SpiderMonkey test js/src/tests/js1_8/extensions/regress-422269.js fails
randomly, because it requires a certain object to be garbage-collected to
pass. With a conservative stack scanner, an object being retained is not
necessarily a bug, and in general, the engine makes no promises about which
objects it retains and which it doesn't.

The JavaScript shell's new findReferences function allows us to find all GC
edges referring to the object, and filter out ones we know to be benign.
This patch changes the test to use findReferences.
2011-12-08 14:51:35 -08:00
Brian Nicholson
c85a220f73 Bug 708808 - Cleanup for locale preference [r=mfinkle] 2011-12-08 14:14:44 -08:00
Rafael Ávila de Espíndola
7227f67d0a Bug 708065 - Fix configure check for -pipe. r=ted.
With the shell used on OS X, the test we were trying to compile was

#include <stdio.h>
int main() { printf("Hello World
"); exit(0); }

which fails.
2011-12-08 17:01:21 -05:00
Sriram Ramasubramanian
e20ff87046 Bug 708394: Remove unwanted LayoutInflater [r=mfinkle] 2011-12-07 15:12:51 -08:00
Sriram Ramasubramanian
0d94e75bf4 Bug 707682: NPE while switching/closing tabs [r=mfinkle] 2011-12-06 14:51:08 -08:00
Brian Nicholson
20ac7c0adf Bug 708185 - Remove homepage preference [r=dougt] 2011-12-08 13:42:00 -08:00
Daniel Holbert
40ecf3af86 Bug 704482 patch 3: Mochitest to verify that we still allow certain whitelisted events to trigger SMIL animations in script-disabled environments. r=birtles r=jwir3
--HG--
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-SVGLoad.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-begin.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-beginEvent.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-end.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-endEvent.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-repeat.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-repeatEvent.svg
rename : image/test/mochitest/lime-anim-100x100.svg => image/test/mochitest/smil-event-repeatN.svg
rename : image/test/mochitest/test_changeOfSource.html => image/test/mochitest/test_smilEventsAllowedInImages.html
2011-12-08 13:34:09 -08:00
Daniel Holbert
fe99576854 Bug 704482 patch 2: Further restrict event-based triggering of SMIL animations when scripts are disabled. r=birtles 2011-12-08 13:34:07 -08:00
Daniel Holbert
0b2cb236d4 Bug 708443 patch 1: Remove call to nonexistent function 'imageLoadCallback' and other misc cleanup in animationPolling.js. r=jwir3 2011-12-08 13:31:29 -08:00
Hub Figuiere
3377f0b9bf Bug 455443 - cache the parent for the accessibilityAttributeValue(NSAccessibilityParentAttribute). r=surkov 2011-12-08 16:19:31 -05:00
Hub Figuiere
7d67f1d492 Bug 703770 - mozRootAccessible need to return a different set of properties. r=surkov 2011-12-08 16:19:29 -05:00
Jason Orendorff
2c05767530 A first cut at Debugger.Environment. Bug 690558, r=jimb.
--HG--
extra : rebase_source : 3cafc4e635f11b3219285fdf6fad952c15765f96
2011-12-08 14:54:26 -06:00
Jason Orendorff
6d4a9937bf Remove the last comment referring to imacros. No bug#, no_r=me.
--HG--
extra : rebase_source : ec684275939472f47dd5faee69c3b4023483d6e2
2011-12-08 14:28:13 -06:00
Jason Orendorff
579d99f332 Fix JS_TraceChildren crash triggered by findReferences. Bug 708261, r=jimb.
--HG--
extra : rebase_source : 336ebf499834345d364955000977a952014ea2bb
2011-12-08 14:23:31 -06:00
Jason Orendorff
92b99889d2 Remove another dead local variable so JS can build without warnings on GCC. No bug#, no_r=me.
--HG--
extra : rebase_source : 6f76525855ffc9a8b02ba9770109b490b9bde7c3
2011-12-08 14:14:01 -06:00
Sriram Ramasubramanian
6c2d81e8b0 Bug 705481: Action bar background should extend below the menu button [r=mfinkle] 2011-12-08 12:18:45 -08:00
Mark Finkle
0fb8c161b9 Bug 708379 - Haptic buzz when tapping on clickable elements [r=blassey] 2011-12-08 15:42:55 -05:00
Rafael Ávila de Espíndola
8671ece279 Bug 708034 - Don't #include __FILE__. r=glandium. 2011-12-08 15:43:05 -05:00
David Mandelin
5c6f651bcf no bug, mark two slow tests as slow 2011-12-08 12:21:40 -08:00