Commit Graph

12875 Commits

Author SHA1 Message Date
roc+@cs.cmu.edu
8a3b8b1390 Backing out bug 413027 2008-03-11 01:36:01 -07:00
reed@reedloden.com
03fb4789f2 Bug 413993 - "directTypeRadio.label in the connection preferences dialog should be "no proxy" rather than "direct connection"" (fix accesskeys collision) [p=cedric.corazza@wanadoo.fr (Cédric Corazza) r=gavin a1.9=damons] 2008-03-11 01:17:00 -07:00
reed@reedloden.com
366e5cbf2f Bug 419216 - "Use URL of page as the title if no title exists" [p=mak77@supereva.it (Marco Bonardo [mak77]) r=Mano a=blocking-firefox3+] 2008-03-11 01:15:32 -07:00
reed@reedloden.com
39420158ed Bug 418406 - "Make network error constants accessible via Components.results" [p=trev.moz@adblockplus.org (Wladimir Palant) r=biesi sr=sicking a1.9=damons] 2008-03-11 01:14:04 -07:00
reed@reedloden.com
232b3cc43f Bug 421635 - "[EM] post restart notification should specify foreground color" [p=taken.spc@gmail.com (KUROSAWA, Takeshi) r=rob_strong a1.9=damons] 2008-03-11 01:13:07 -07:00
reed@reedloden.com
a40a1177bc Bug 414342 - "Fix spacing and margins in Preferences, Addons, Pageinfo" [p=ispence@gmail.com (Ian Spence) / michael.monreal@gmx.net (Michael Monreal) r=Mano a1.9=damons] 2008-03-11 01:12:06 -07:00
reed@reedloden.com
6aac76c268 Bug 420595 - ""you have chosen to open" dialog uses wrong icon" (Change the accept button icon to a save one when the only choice is "save") [p=frnchfrgg-mozbugs@altern.org (RIVAUD Julien [_FrnchFrgg_]) r=sdwilsh a1.9=damons] 2008-03-11 01:11:08 -07:00
reed@reedloden.com
c2231a43b1 Bug 421947 - "More C++ casts required for Windows only, especially overloaded pow() and log10()" [p=benjamin@smedbergs.us (Benjamin Smedberg [bsmedberg]) r=crowder a1.9=damons] 2008-03-11 01:09:41 -07:00
reed@reedloden.com
fc7cc13805 Bug 419036 - "Simplify nsCacheEntryHashTable::VisitEntries and break 'friendship'" [p=alfredkayser@gmail.com (Alfred Kayser) r=dcamp sr=biesi a1.9=damons] 2008-03-11 01:08:05 -07:00
roc+@cs.cmu.edu
74d8a4f62e Bug 413027 reftest 2008-03-11 00:46:40 -07:00
roc+@cs.cmu.edu
7464d60332 Bug 413027. The XUL min-size and pref-size for a CSS block should just be its height when reflowed at its preferred width --- NOT the height of the tallest line, that is insane. r+sr=dbaron 2008-03-11 00:38:26 -07:00
roc+@cs.cmu.edu
65180d9a75 Bug 420351. Empty bullets cannot make a line non-empty. r+sr=dbaron 2008-03-11 00:36:03 -07:00
reed@reedloden.com
4163810fb8 Bug 419990 - "Firefox hides the urlbar dropmarker too late when chromehidden contains toolbar" (Correct the chrome size accounting when chromehidden contains toolbar) [p=frnchfrgg-mozbugs@altern.org (RIVAUD Julien [_FrnchFrgg_]) r=Mano a1.9=shaver] 2008-03-11 00:08:16 -07:00
karlt+@karlt.net
3f2978a173 Bug 421955. combining mark at start of text run rendered as NUL hex box or garbage. r=roc, a1.9=damons 2008-03-11 00:04:31 -07:00
ajschult@verizon.net
1b82fd5ef6 Bug 420541: test failures because onfocus never fires for iframe load, r=Enn 2008-03-10 21:35:46 -07:00
mozilla.mano@sent.com
36ca72e11b Bug 408938 - Include bookmarks toolbar folder in bookmarks menu. r=dietrich. 2008-03-10 20:18:44 -07:00
dolske@mozilla.com
7dd3e6390e Disable one check that seems to be mysteriously failing. 2008-03-10 19:24:08 -07:00
jonas@sicking.cc
47a2cff0da Back out due to failed mochitest 2008-03-10 19:18:15 -07:00
timeless@mozdev.org
9dc3d7bca0 Bug 419510 PAC dateRange function doesn't handle months after JUN r=biesi a=dsicore Also adds support for getDay("SAT")... 2008-03-10 18:40:08 -07:00
jonas@sicking.cc
4b8f2cdf7a Bug 401155: Make sure plugins and XBL constructors not execute when creating a script wrapper if it's not safe to execute scripts. r=bz sr=jst. 2008-03-10 17:49:19 -07:00
philringnalda@gmail.com
4fabd042b3 Bug 402637 - Make uri-element class work on any element, r=mano, r=mconnor, a1.9=dsicore 2008-03-10 17:19:04 -07:00
dolske@mozilla.com
2eef0839db Bug 419081 - Password prompting code doesn't check new passwords against all possible existing passwords. r=gavin, a=blocking-ff3+ 2008-03-10 17:14:10 -07:00
timeless@mozdev.org
74b458a796 Bug 421303 Crash [@ jsds_ScriptHookProc] r=caillon a=dsicore If we reach ~jsdService, that means our client doesn't care about us, so we can (and should) drop all references to any callbacks (if they cared, they'd have kept us alive!*). I think jsdService::Off should clear all the hooks, the strange magic of not clearing it isn't really a great idea. So for Off, we'll now clear the ScriptHook too (consumers who use off should really drop any references they have to our objects...). I'm still on the fence on this point, I suspect we can actually move it from ::Off to ~jsdService (it must be cleared at some point, otherwise if jsd_xpc's library manages to get unloaded, the function pointer would be invalid, which would be *BAD*). jsds_NotifyPendingDeadScripts needs to clear gDeadScripts whether or not there's a service or hooks, so it does. Because it's a static callback and because of the scary way GC works, I'd rather ensure (deathgrip) that jsds is available (and consistent!) for the duration of the function call. The code already handles the lack of a hook, so there's no reason to do magical returns.... The real problem which mayhemer found was that jsdService::Off was returning early (failure) because gGCStatus wasn't JSGC_END when called from ~jsdService from JS_GC from the cyclecollector, so we make sure that ~jsdService forces ::Off to act as if it is JSGC_END (after ensuring that there are no callbacks available). * a pure javascript (xpcom component, not DOM hosted!) version of a jsdService consumer means that jsdService will need to talk to the CycleCollector eventually (this is another bug for the future). 2008-03-10 17:13:48 -07:00
mozilla@weilbacher.org
8aea370edc [OS/2] Bug 369791: adapt plugin code to compile with cairo-os2, this in principle allows plugin content to be printed and windowless plugins to display, r=mkaply, a1.9+=damons 2008-03-10 17:10:55 -07:00
sayrer@gmail.com
6f8eff530f Bug 421984. Build with -fstrict-aliasing on GCC platforms. r/a=shaver 2008-03-10 17:04:47 -07:00
timeless@mozdev.org
fdcf2c3106 Bug 421774 consolidate jsd static variables into main r=shaver 2008-03-10 16:11:36 -07:00
jwalden@mit.edu
f57d2e7968 Bug 421767 - element.attributes.removeNamedItemNS(<non-existent attribute NS and name>) returns null instead of throwing. acid3++ r+sr=jst, a=beltzner 2008-03-10 16:02:36 -07:00
jay@mozilla.org
9b4baf70bc bumped version and added Help tab content 2008-03-10 15:31:59 -07:00
dholbert@cs.stanford.edu
61fc354af4 Bug 407243 reftest, to define current behavior. 2008-03-10 15:11:16 -07:00
bclary@bclary.com
d914c4b13e JavaScript Tests - update test to catch exception in browser tests, bug 420612 2008-03-10 14:24:35 -07:00
jwalden@mit.edu
10d6312b8c Bug 420521 - Leaking nsThread and nsTimerImpl running full set of Mochitests. This fixes the last refcounted leak on OS X Mochitests! Zounds! r=brendan, sr=dbaron, a=blocker 2008-03-10 14:05:46 -07:00
igor@mir2.org
85f2f1318d bug=419632 r=brendan a1.9=blockin1.9 avoiding weak roots for doubles 2008-03-10 12:27:44 -07:00
reed@reedloden.com
765423226c Bug 421841 - "Breakpad continually sends the same crash report over and over until you manually stop it" (add (void)closeMeDown; method, call it instead of closeClicked) [p=beltzner@mozilla.com (Mike Beltzner) r=ted/luser a=blocking1.9+] 2008-03-10 11:59:59 -07:00
reed@reedloden.com
8fd5659a33 Bug 355181 - "net_IsValidHostName() comment says one thing, code does another" (use a whitelist) [p=michal@allpeers.com (Michal Novotny) r=biesi a=blocking1.9+] 2008-03-10 11:59:13 -07:00
bhearsum@mozilla.com
4cee04e486 bug 420947: bootstrap changes to support new patcher2.pl prettyVersion. r=rhelmer, patch=me 2008-03-10 11:53:05 -07:00
dietrich@mozilla.com
bb02f4a736 Backing out test of bug 384370 2008-03-10 10:49:31 -07:00
bhearsum@mozilla.com
9aa544a1bb bug 420947: patcher should use 'prettyVersion' in the update dialog (appv) and 'version' for everything else. r=nrthomas, patch=me 2008-03-10 10:42:47 -07:00
dietrich@mozilla.com
ee727436aa Bug 384370 - test perf run (r=mano) 2008-03-10 09:41:52 -07:00
gavin@gavinsharp.com
0de56e7ca2 Back out the patch from bug 420642 because it broke gmail (bug 421571) 2008-03-10 01:28:51 -07:00
gavin@gavinsharp.com
a2dcb83701 Bug 421715: canvas crash passing undefined to putImageData, r+a=vlad 2008-03-10 00:35:37 -07:00
masayuki@d-toybox.com
b295ce78a1 Bug 420285 Internationalize plugin tag and plugin host r=jst, sr=bzbarsky, b1.9=jst 2008-03-10 00:07:15 -07:00
reed@reedloden.com
223ffcf984 Back out Alfred Kayser's patch from bug 399925 due to Tp crashes. 2008-03-09 23:09:37 -07:00
reed@reedloden.com
fd30224781 Bug 399925 - "GIF decoder needs to allow its data to be discarded" [p=alfredkayser@gmail.com (Alfred Kayser) r=stuart sr=tor a=blocking1.9+] 2008-03-09 22:09:24 -07:00
aaronleventhal@moonset.net
ba1b4dde66 Backing out part of bug 417018 which caused bug 421650. 2008-03-09 19:24:00 -07:00
dbaron@dbaron.org
b76ec670c5 Test selector serialization too. 2008-03-09 18:10:03 -07:00
roc+@cs.cmu.edu
6ce7967ace Bug 403181, revert more bogus test images 2008-03-09 16:53:48 -07:00
roc+@cs.cmu.edu
7ee2d30596 Bug 403181, fix test image 2008-03-09 15:46:40 -07:00
roc+@cs.cmu.edu
11aa232422 Bug 403181. Pass the desired source rectangle for background images down into nsThebesImage and ensure we don't sample outside it. Back out a bad pixman patch that caused regressions, and adjust image encoding tests so they don't depend on the regression. Also switchs some reftests to quirks mode so that the 1-appunit width of <br>s doesn't bite us. r=vlad,sr=dbaron 2008-03-09 14:55:05 -07:00
bclary@bclary.com
7c090f1207 JavaScript Tests - regression tests for bug 418641, by Igor Bukanov 2008-03-09 14:04:14 -07:00
bclary@bclary.com
45121849cd JavaScript Tests - regression test for bug 420087, by Mike Shaver 2008-03-09 13:49:13 -07:00