Граф коммитов

191844 Коммитов

Автор SHA1 Сообщение Дата
nboyd%atg.com eaa463a968 Store StopIteration in the global scope in a way that cannot be affected by
JavaScript. Rhino's behavior now matches SpiderMonkey for the following:
js> delete StopIteration
true
js> function f() { yield 3; }
js> g = f()
[object Generator]
js> g.next();
3
js> try { g.next() } catch (e) { exn = e; }
[object StopIteration]
2007-11-02 13:41:39 +00:00
nboyd%atg.com 4780cb7c5a Break dependencies so that implementations can run without an Interpreter
instance.
2007-11-02 13:21:32 +00:00
stuart.morgan%alumni.case.edu fdabd6cb32 Camino only - Missed change from bug 401402 2007-11-02 13:14:05 +00:00
slavomir.katuscak%sun.com 1921024a41 Bug 400842: Patch to report binary name (used by Valgrind parser). r=nelson 2007-11-02 10:20:04 +00:00
mozilla%kewis.ch 1356ccf5ba Fix bug 401878 - Events of deselected calendars stays visible (regression). r=mickey 2007-11-02 09:56:08 +00:00
mozilla%kewis.ch bd104182b8 Fix bug 401905 - Event grippies are no longer functional (regression). r=mickey 2007-11-02 09:35:55 +00:00
reed%reedloden.com d93a2653ce Bug 401806 - "support building with dtrace enabled on Mac OS X" [p=Ryan r=luser aM9=schrep] 2007-11-02 06:36:50 +00:00
reed%reedloden.com d7049544d3 Bug 389350 - "No editable iframe with these steps to follow" (tests) [p=cpearce r=roc] 2007-11-02 04:38:35 +00:00
reed%reedloden.com 788d33e86a Bug 402081 - "[fr] DOMi update due to bug 347792" [p=cedric.corazza@wanadoo.fr (C��dric Corazza) r=Benoit aM9=beltzner] 2007-11-02 04:35:05 +00:00
reed%reedloden.com 8da8d97b4b Bug 389131 - "Reporter should move away from SOAP (Reporter fails to send reports on trunk)" (address Neil's nit) [p=reed r=NeilAway r=raccettura a=blocking1.9+ for M9] 2007-11-02 04:27:54 +00:00
dietrich%mozilla.com f48970aa0f Bug 381795 places indexes need review (r=sspitzer) 2007-11-02 03:24:03 +00:00
pavlov%pavlov.net f2161113b2 bug 375750. don't recreate CGFontRefs every time we draw -- cache them. fixes multiple embeddings of fonts when drawing to a quartz print surface. r=vlad a=schrep 2007-11-02 02:08:31 +00:00
dholbert%cs.stanford.edu f590c128b5 Bug 400171: minor reftest change -- Added explicit line-height to testcases rather than using the default value. (Bug's reproducability depends on line-height, & default value varies between platforms.) 2007-11-02 01:13:28 +00:00
jst%mozilla.org da4cd9b44e Fixing solaris bustage from bug 401687. r+sr=jonas@sicking.cc 2007-11-02 01:09:53 +00:00
roc+%cs.cmu.edu fc4e366dba Bug 389350. Making a display:none IFRAME editable doesn't work. patch by Chris Pearce, r=brade,sr=roc,a=damon 2007-11-02 00:51:08 +00:00
dietrich%mozilla.com 9b600acfb4 Bug 401722 aggressively expire history visits that are not top-level (r=sspitzer) 2007-11-01 23:49:01 +00:00
dolske%mozilla.com 8b13692802 Bug 402000 - imgContainer's ContainerLoader.mContainer should be a nsCOMPtr. r=pavlov a1.9=pavlov aM9=dsicore 2007-11-01 23:09:42 +00:00
jst%mozilla.org 52ecd87ffb Landing patch for bug 401687. Stop reference counting JS objects in the cycle collector. Patch by peterv@propagandism.org, r+sr=dbaron@mozilla.com,igor@mir2.org, a=dsicore@mozilla.com 2007-11-01 22:51:59 +00:00
dwitte%stanford.edu 3fec05fb5a add logging coverage for cookie eviction and db operations. b=401998, r+sr=mconnor, a=beltzner 2007-11-01 22:34:16 +00:00
wtc%google.com b33e44d093 Bug 402114: fix the incorrect prototypes of SSL handshake callbacks.
r=nelson.
Modified Files:
	SSLsample/client.c SSLsample/server.c SSLsample/sslsample.c
	SSLsample/sslsample.h strsclnt/strsclnt.c vfyserv/vfyserv.c
	vfyserv/vfyserv.h vfyserv/vfyutil.c
2007-11-01 22:05:23 +00:00
stuart.morgan%alumni.case.edu 181fe9c8f0 Camino only - Bug 401312: Give the status bar the correct look on Leopard. r=froodian sr=mento 2007-11-01 21:38:04 +00:00
edward.lee%engineering.uiuc.edu 66da4a9733 Bug 396701 - clicking on .exe file shows wrong download dialog. r=gavin, sr=biesi, b-ff3=beltzner, a=blockingM9 2007-11-01 21:18:55 +00:00
maxf%magma.ca 6d94d13675 Changes for SH4 and ARM processors. These were made by Roger Maclean, reviewed
by me. r=rmaclean@qnx.com

This change is for the QNX (Photon) platform only. It will not affect the
runtime or build of other Mozilla platforms since QNX source is not part of
Tinderbox builds. None of the changes will affect non-QNX builds in any way.
You can contact me at: mfeil@qnx.com
2007-11-01 21:07:01 +00:00
pavlov%pavlov.net 751e491be6 bug 399813. set maxAdvance correctly. r=roc a= beltzner 2007-11-01 20:51:05 +00:00
joshmoz%gmail.com feabca8daa update comment for bug 401341 2007-11-01 20:49:58 +00:00
joshmoz%gmail.com 8c71ec738e ctrl-tab events sent twice on Mac OS X 10.5. b=401341 r=cbarrett sr=roc a=beltzner 2007-11-01 20:48:24 +00:00
nboyd%atg.com a819104056 Improve indexOf (and lastIndexOf) performance by 3.5X.
Fix regression:

~/no_crawl/src/js/rhino>java -jar build/rhino1_6R6pre/js.jar
Rhino 1.6 release 6 Pre 2007 02 23
js> [undefined].map(function(val){return !val}).toSource()
[true]
js> quit()
~/no_crawl/src/js/rhino>java -jar build/rhino1_7R1pre/js.jar
Rhino 1.7 release 1 Pre 2007 09 26
js> [undefined].map(function(val){return !val}).toSource()
[, ]
2007-11-01 20:38:14 +00:00
dholbert%cs.stanford.edu 0b233e9d30 Bug 400171 reftest update: Fixes unexpected pass of 400171-1a on Windows by growing the first div a bit. 2007-11-01 20:17:22 +00:00
dholbert%cs.stanford.edu f32df51aa6 Bug 393655 reftests. r=roc 2007-11-01 20:07:56 +00:00
mark%moxienet.com 671f672825 [10.5] Can't build Camino with 10.5 SDK: error: InterfaceBuilder/InterfaceBuilder.h: No such file or directory. Remove IBPalette from the default build. r=alQAhira 2007-11-01 20:06:00 +00:00
gijskruitbosch%gmail.com b51ef97158 Bug 376728 - Add WAI-ARIA attributes to chat output
r=silver@warwickcompsoc.co.uk (James Ross)
r=aaronleventhal@moonset.net (Aaron Leventhal)
ChatZilla Only. NPOTFFB.
2007-11-01 20:00:32 +00:00
kairo%kairo.at 5a505d4597 really localize this file 2007-11-01 19:40:53 +00:00
dholbert%cs.stanford.edu e85180d25d Bug 400171 reftests. r=roc 2007-11-01 19:31:36 +00:00
sspitzer%mozilla.org f2ca358b14 fix for bug #401985
change places.sqlite default page_size value to 4K

r=dietrich, a=schrep for M9
2007-11-01 17:07:11 +00:00
edburns%acm.org 87ce6cd7c0 long_awaited_cvs_remove_of_obsolete_blackconnect_code 2007-11-01 16:50:17 +00:00
michael.buettner%sun.com e700106c4f Bug 401681 - Sync calendar-event-dialog.css between trunk and branch, patch=mschroeder, r=mickey 2007-11-01 13:51:00 +00:00
michael.buettner%sun.com 3128794ea9 Bug 397866 - Errors are getting announced indefinitely, r=dbo 2007-11-01 10:11:22 +00:00
ause%sun.com beee368b89 bug 401894 - push update info to new server 2007-11-01 09:02:56 +00:00
jonas%sicking.cc 90b1db73c6 Bug 401463 and others. Make us call InstallImplementation in more places in order to behave more like we did when InstallImplementation was called during LoadBindings. r/sr=jst 2007-10-31 23:35:51 +00:00
jst%mozilla.org f48b5df1fb Fixing bug 401053. Make sure to initialize LiveConnect any time a Java applet is loaded, no matter what markup was used to load the applet. r+sr=dveditz@cruzio.com, a=dsicore@mozilla.com 2007-10-31 22:52:11 +00:00
bclary%bclary.com e0ea82e0c4 Sisyphus|JavaScript Tests - remove need to parallel dir structure of tests into results, bug 399888, r=rcampbell, not part of the build 2007-10-31 21:04:03 +00:00
stefanh%inbox.com 701cab123f Bug 401727 - 'dlgbuttons=accept,cancel>' at bottom of fonts.xul. r=bienvenu. 2007-10-31 20:45:53 +00:00
aaronleventhal%moonset.net 316eff3964 Bug 386286. Firefox.exe process running after exit, stuck in ::OleUninitialize() in OleRegisterMgr::~OleRegisterMgr(). Major work to track down the problem by Marco Zehe. r=emaijala, sr=neil, a=beltzner 2007-10-31 18:55:57 +00:00
reed%reedloden.com ff618f3cd4 Bug 401893 - "make sure that the Larry button is as high as the location bar" [p=dao r=Mano aM9=beltzner] 2007-10-31 18:54:11 +00:00
reed%reedloden.com e6e48956f2 Bug 391429 - "Editor caret is hidden in XULRunner applications, but visible in Firefox" [p=matt@songbirdnest.com (Matt Crocker) r+sr=peterv aM9=beltzner] 2007-10-31 18:51:50 +00:00
dietrich%mozilla.com d531ed9e64 Bug 401726 orphaned moz_places records maybe not being deleted (for mak77@supereva.it, r=dietrich, a=mconnor) 2007-10-31 18:34:26 +00:00
mark%moxienet.com ff14188ea0 401817 [10.5] Can't build Camino with 10.5 SDK: error: 'MAXPATHLEN' was not declared in this scope. Use PATH_MAX instead of MAXPATHLEN. r=smorgan a/Cm1.6-M1.8=me 2007-10-31 18:22:02 +00:00
mark%moxienet.com b99f3b237a Remove Stephen Colbert from credits.xhtml. Camino-only. r=smorgan sr=Camino community and drivers a/Cm1.6-M1.8=me 2007-10-31 18:18:38 +00:00
wtc%google.com 152865cbdd Bug 401768: enable us to build with gcc 3.3 and an SDK on Mac OS X 10.5
Leopard.  The patch is contributed by Mark Mentovai <mark@moxienet.com>.
r=wtc.
2007-10-31 17:56:18 +00:00
rrelyea%redhat.com cb960db845 Need to provide a way to modify and create new PKCS #11 objects.
bug 401026
r=julien

Implements 2 new functions, one to modify existing pkcs #11 objects, and
another to creat them.
2007-10-31 17:25:28 +00:00