Boris Zbarsky
9ed6e00e1e
Bug 645938. Make sure to set mFlushesNeeded for all content lists. r=dbaron
2011-03-29 00:41:01 -04:00
John Daggett
2f8f6b3272
Bug 643649. Pass correct parameter value into registry call. r=joedrew
2011-03-29 12:11:22 +09:00
Raymond Lee
fd427961d0
Bug 587276 - KeyEvent in TabCandy window affect browser [r=ian]
...
--HG--
extra : rebase_source : 9076dbf84083b547498e997fa3ceaa9d7fa04b7e
2011-03-29 10:51:26 +08:00
Makoto Kato
576e51b3dd
Bug 636296 - Fix forceReturn trampoline on Win64/Solaris (r=dvander)
...
--HG--
extra : rebase_source : 85846343b38031931adafb7e44bc8983fdd3472c
2011-03-28 17:33:53 -07:00
Phil Ringnalda
93680da51c
Back out bd821ea0ad41 (638324) for mochitest-chrome crashes
2011-03-31 19:55:10 -07:00
Steve Fink
8af8b2e83f
Backout bogus part of c46b4248ee36 (--rebase deleted a random file; thanks) (r=flames)
2011-03-31 15:48:25 -07:00
Andreas Gal
91b32f1653
Maintain a list of IdArrays as we hand them out via JS API (638324, r=brendan).
2011-03-31 14:42:33 -07:00
Ehsan Akhgari
0a8aca1aca
Bug 644428 - Position the caret correctly for empty inline frames; r=roc
2011-03-28 20:17:16 -04:00
Rob Campbell
c6f80bc19d
Bug 642108 - JS errors from HUD in Error Console; f=mihai.sucan r=ddahl,dtownsend
2011-03-28 17:19:37 -03:00
Mehdi Mulani
978a31d379
Bug 628585 - (Mac) Pressing ctrl key in Flash doesn't work as expected. r=josh
2011-03-28 13:03:39 -07:00
Rob Campbell
a11c053779
merge mozilla-central to devtools
2011-03-28 10:55:52 -03:00
Jim Mathies
54567cecf6
Bug 634586 - Hide the main window while transitioning to full screen, improves full screen transition experience. r=bz
2011-03-28 07:36:37 -05:00
Steve Harper
23f60d49d7
Bug 545650 - Use unbuffered IO when copying files in nsILocalFileWin. r=jimm
2011-03-28 07:36:33 -05:00
Kyle Huey
f5d7490f5e
Merge m-c to bs.
2011-03-27 20:53:14 -04:00
Zack Weinberg
cc402fa08a
Bug 644006: Don't crash on zero-length input to nsNSSCertificateDB::ConstructX509FromBase64. r=honzab
2011-03-27 11:21:08 -07:00
Wan-Teh Chang
0389b18242
Bug 584562: Add algorithm string for RSA-PSS signatures.
...
The patch is contributed by Hanno Boeck <hanno@hboeck.de>.
r=wtc.
2011-03-27 10:49:36 -07:00
Josh Matthews
5808ca2c77
Bug 645359 - Need to call Init after there's a global ContentParent available for use in observers. r=startup-bustage
2011-03-26 16:16:45 -04:00
Steve Fink
5d67cd50c4
Bug 639943 - Convert IDL formatting to JS engine house style (r=timeless)
2011-03-26 12:05:40 -07:00
Igor Bukanov
a5b8f40563
bug 643548 - followup to fix js shell builld brekage on Linux
2011-03-31 15:07:48 +02:00
Paul Biggar
e471647538
Bug 643548: Remove mozalloc_undef_macro_wrappers hack from JS engine. (r=luke,rs=brendan)
...
mozalloc_undef_macro_wrappers are brittle and have side-effects that are hard
to debug and fix. The alternative is the just stick an underscore on the end of
malloc, free, etc, which is a comparatively small burden.
2011-03-31 01:14:12 -07:00
Paul Biggar
1e46fe8cee
Bug 634155: Account for NewCompartment's memory, and change allocation APIs (r=nnethercote)
...
This changes the allocation API, in the following way:
js_malloc -> {cx->,rt->,OffTheBooks::}malloc
js_calloc -> {cx->,rt->,OffTheBooks::}calloc
js_realloc -> {cx->,rt->,OffTheBooks::}realloc
js_free -> {cx->,rt->,Foreground::,UnwantedForeground::}free
js_new -> {cx->,rt->,OffTheBooks::}new_
js_new_array -> {cx->,rt->,OffTheBooks::}new_array
js_delete -> {cx->,rt->,Foreground::,UnwantedForeground::}delete_
This is to move as many allocations as possible through a JSContext (so that they may be aken into account by gcMallocBytes) and to move as many deallocations to the background as possible (except on error paths).
2011-03-31 01:13:49 -07:00
Nicholas Nethercote
1b3a06bc73
Disable warnings-as-errors, which was introduced by bug 609532. See the bug for justification and follow-up. r=pbiggar.
2011-03-30 17:54:31 -07:00
Gary Kwong
4c59c7e4fd
Bug 643217 - Replace "ASSERTION FAILED" message with "Assertion failure" in assembler. r=njn
...
--HG--
extra : rebase_source : b9bd22ee029ebeea7b19327d38305ad1f3aba341
2011-03-31 08:44:57 +08:00
Brian Hackett
1927198c0f
Transform RegExp.exec to RegExp.test in native call IC, bug 645889. r=dmandelin
2011-03-30 17:43:36 -07:00
David Mandelin
7f4b722a1f
Bug 645184: normalize id in addprop IC handler, r=dvander
2011-03-30 16:57:44 -07:00
Gregor Wagner
1279408536
Fix atomsCompartment assertion. No Bug, r=billm
2011-03-30 14:02:21 -07:00
Jim Blandy
a210981153
Bug 645826: Include standard output and standard error in exception text when testing manifest conditions. r=dmandelin
2011-03-30 12:49:47 -07:00
Jim Blandy
ce8b53e509
Bug 643222: Don't assert that we never cached adds to call objects. r=jorendorff
...
This assertion should not have been added. Although most adds to call
objects are done by DEFVAR operations, which don't create property cache
entries, the test case shows a situation in which a SETNAME, which is
cached, does the add. Since the object whose property should receive the
value of an assignment's RHS is chosen before the RHS is evaluated, it is
correct to put the value of the 'delete' expression on the call.
It would be nice to ensure that this call object, which we know we are
adding bindings to, had been recognized as extensible at compile time by
the analysis added in bug 554955. However, we only set "extensible parents"
flag on the bindings of calls whose *parents* are extensible, not the
extensible calls themselves. So there isn't anything convenient to check
here.
2011-03-30 12:48:24 -07:00
L. David Baron
a7d0981957
Mac GfxInfo::GetFeatureStatusImpl must assign to aStatus when it returns success. (Bug 645376)
2011-03-26 11:45:51 -07:00
Wan-Teh Chang
82421cb720
Bug 639191: update NSPR to NSPR_4_8_8_BETA2. Include fixes
...
for bug 546535, bug 587426, bug 622425, bug 624868,
bug 626035 (attachment 504094 only), bug 626309, bug 627299,
bug 629653, bug 635667.
2011-03-26 10:42:58 -07:00
Kyle Huey
a1867b04d7
Remove dead plugin SDK makefiles. rs=bsmedberg
2011-03-26 12:16:57 -04:00
Ehsan Akhgari
0c26c5ea2f
Merge cedar into mozilla-central
2011-03-26 12:16:48 -04:00
Kyle Huey
3f3bf2bbc2
Merge m-c to bs.
2011-03-26 12:12:37 -04:00
Ms2ger
e6db88b080
Bug 622935 - Map 0x7F to U+007F rather than U+FFFD in mac and soviet encodings; r=smontagu
2011-03-26 12:04:18 -04:00
Ms2ger
5a022749c7
Bug 587469 - Remove an image map quirk; r=mats
2011-03-26 11:59:54 -04:00
Ms2ger
a7161e667f
Bug 585933 - Only implement HTMLUnknownElement on unknown elements; r=jonas,smaug
...
--HG--
rename : content/html/content/src/nsHTMLSpanElement.cpp => content/html/content/src/nsHTMLUnknownElement.cpp
2011-03-26 11:58:55 -04:00
timeless@mozdev.org
f6ec154974
Bug 620179 crash [@ TestNode::Constrain] if cantHandleYet
...
r=enn
2011-03-26 00:39:29 -04:00
timeless@mozdev.org
442136859b
Bug 620181 crash [@ nsXBLPrototypeBinding::LocateInstance] if the while loop condition becomes false
...
r=neil
2011-03-26 00:39:12 -04:00
timeless@mozdev.org
17646a69f4
Bug 620311 crash [@ nsTableFrame::MatchCellMapToColCache | nsTableFrame::RemoveFrame] because cellMap guard did not cover MatchCellMapToColCache
...
r=bernd
2011-03-26 00:37:35 -04:00
timeless@mozdev.org
0401ae698b
Bug 620408 add fall through comment to txXPCOMExtensionFunctionCall::GetParamType
...
r=peterv
2011-03-26 00:37:11 -04:00
Rob Campbell
8fb2038d8e
merge devtools with mozilla-central tip
2011-03-25 19:00:30 -03:00
Michael Wu
0d885ec1fa
Bug 636265 - Don't pass unused return value in nsJSConfigTriggers.cpp, r=jorendorff
2011-03-25 14:31:14 -07:00
Michael Wu
ccd8c1a9d4
Bug 636243 - Pass null for rval in nsDOMWorkerTimeout.cpp, r=jorendorff
2011-03-25 14:31:14 -07:00
Michael Wu
a9119d070a
Bug 636251 - Use JSOPTION_NO_SCRIPT_RVAL in nsFrameMessageManager.cpp, r=jorendorff
2011-03-25 14:31:14 -07:00
Michael Wu
8ff0c7fe8d
Bug 636811 - Use JSSCRIPT_NO_SCRIPT_RVAL in js component loader, r=mrbkap
2011-03-25 14:31:14 -07:00
Michael Wu
e051b2029a
Bug 636243 - Use JSOPTION_NO_SCRIPT_RVAL in nsDOMWorkerScriptLoader.cpp, r=jorendorff
2011-03-25 14:31:09 -07:00
Rob Campbell
b1dc4c2cfd
Bug 632347 - Expanding a property in the Object Inspector whose type is Generator causes lockup; test-disabled a=#orange
2011-03-25 18:21:27 -03:00
L. David Baron
a6f1e3bc60
Add crashtest for bug 645072.
2011-03-25 11:42:00 -07:00
L. David Baron
890bb3d700
Mark tests added in changeset 03070beac9e7 (bug 418975) as failing, since the patch is being backed out for causing crash bug 645072.
2011-03-25 11:40:28 -07:00
L. David Baron
32c4f11bf8
Back out changeset 25beb9ced8d2 (bug 418975) for causing crash bug 645072.
2011-03-25 11:38:58 -07:00