bzbarsky%mit.edu
bd6e613fb1
Calculate the relative offsets after we've done whatever corrections we need to
...
do to the CB height (eg in quirks mode). Bug 226954, r+sr=dbaron
2004-01-05 23:48:57 +00:00
bzbarsky%mit.edu
9f9860b620
Clear mResources backpointer when the resources are destroyed. Bug 226744,
...
r=bryner, sr=jst
2004-01-05 23:46:00 +00:00
bzbarsky%mit.edu
7d1f0c7ed2
Make ReplaceObjectAt a little safer. Bug 227780, r=timeless, sr=alecf
2004-01-05 23:43:28 +00:00
bzbarsky%mit.edu
a39d4b7363
Make checkbox and radio also submit by clicking the submit button, like text
...
inputs do. Bug 190559, r+sr=jst
2004-01-05 23:39:50 +00:00
amardare%qnx.com
a700cd7a74
Changes for the QNX ( photon ) platform - it should not affect ( building/runtime ) other platforms.
...
Removed the munlockall() call.
2004-01-05 23:33:39 +00:00
bzbarsky%mit.edu
e5cedca9d0
Use nsCOMArray instead of nsISupportsArray. Also kills off tabs. Bug 227491,
...
r=caillon, sr=dbaron
2004-01-05 23:28:41 +00:00
pinkerton%aol.net
d1d245f091
don't reload the page when asking for view-source. use the cached version
...
if we have one (bug 153884)
2004-01-05 23:28:37 +00:00
amardare%qnx.com
f17ff2192d
Changes for the QNX ( photon ) platform - it should not affect ( building/runtime ) other platforms.
...
These changes are necessary in order to implement the xremote protocol on our platform
( it uses PtConnection to implement the xremote ). On other platforms ( linux ) it should build/run as before.
2004-01-05 23:26:15 +00:00
bzbarsky%mit.edu
331a80998b
Make sure to create unique proto chains as needed instead of reusing incorrect
...
protos. Bug 127418, r=hyatt, sr=brendan
2004-01-05 23:19:58 +00:00
amardare%qnx.com
7a51464657
Changes for the photon platform - it should not affect ( building/runtime ) other platforms.
2004-01-05 23:04:07 +00:00
amardare%qnx.com
0260c1001a
Added the embedding/config/basebrowser-qnx for the QNX ( Neutrino ) ( GUI=photon ) OS.
2004-01-05 23:02:53 +00:00
pinkerton%aol.net
1882769fc1
remove FilterView (it's now in a different nib, bug 227370) and fix "new window"
...
in dock menu (wasn't hooked up)
2004-01-05 23:02:43 +00:00
pinkerton%aol.net
5c9460d0fd
use a new nib for save accessory panels (bug 227370)
2004-01-05 23:01:53 +00:00
pinkerton%aol.net
037aed0e36
use a separate nib for the save accessory panels (bug 227370)
2004-01-05 23:01:33 +00:00
pinkerton%aol.net
2cac2035b7
new nib for bug 227370
2004-01-05 23:01:04 +00:00
cbiesinger%web.de
cb6bb540d2
bug 230103 patch by sergei_d@fi.tartu.ee (Sergei Dolgov) r=biesi
...
Looper must be locked in nsWindow::CaptureMouse() method
2004-01-05 20:31:17 +00:00
ccarlen%mac.com
00b09c7308
Bug 169789 - Cannot save view-source URLs. r=pink
2004-01-05 20:13:13 +00:00
pinkerton%aol.net
e05a4f27db
sanity check cancelling d/l at the code level, not just at the UI level
...
(bug 229856)
2004-01-05 17:56:35 +00:00
neil%parkwaycc.co.uk
903d0c79bf
Supplementary patch to bug 66868 to use attribute AString unicodePath; r=mkaply sr=mscott
2004-01-05 17:22:43 +00:00
neil%parkwaycc.co.uk
97ad17c191
Bug 229995 view source doesn't need history or security r=doron sr=bz
2004-01-05 16:51:19 +00:00
darin%meer.net
e7c6e0a021
fixes bug 194553 "Add accesskeys to bookmark properties" patch by alfredkayser@nl.ibm.com r=darin sr=jag
2004-01-05 15:42:52 +00:00
daniel%glazman.org
97ddf886c0
fixing corrupted GIF image; fix by hadrien.nilsson@sinapse.com; b=228708, r/rs=daniel@glazman.org
2004-01-05 14:10:41 +00:00
igor%mir2.org
332cc13ae5
Move details of parsing/code generation from Context to interpreter/optimizer to allow more pluggable compilation interface.
2004-01-05 13:22:40 +00:00
brendan%mozilla.org
c98a6b4d3f
- Eliminate WellTerminated by coalescing its call sites to the end of Statement and inlining it there. This adds a tiny bit of overhead in some cases, due to
...
the ON_CURRENT_LINE check, which can be proven redundant for cases such as the
debugger statement. But the cost should be in the noise, and code size wins.
- Remove bogus lastExprType argument to WellTerminated and eliminate its only
use, in parsing an expression statement. Also eliminate the WellTerminated
check after a function "statement" (which could be a top-level declaration, or
an instance of our function statement extension, e.g. 'if (x) function f(){}',
neither of which should require semicolon termination).
The intent of the lastExprType parameter, the WellTerminated call from the
TOK_FUNCTION case, the call from the default expression-statement case, and the
#if JS_HAS_LEXICAL_CLOSURE code in WellTerminated appears to have been to allow
'function f(){} function g(){}' for JS versions < 1.2, and to forbid it as an
error otherwise, requiring a semicolon in between the function declarations.
But in fact ECMA and good sense should allow as many function declarations on
a line as you please, optionally followed by other statements, and without
requiring semicolons after function declarations.
Since this change removes an error case, I don't expect any incompatibility
bugs to be reported.
- Coalescing/inlining WellTerminated meant removing its call from MatchLabel,
called by the break and continue cases in Statement.
- The debugger keyword could be used without a semicolon terminator to make it
a statement, as in 'debugger 1 + 2;', parsed as a debugger statement followed
by an expression statement -- which seems quite wrong (ECMA reserves debugger
but does not specify its usage).
This bug arose due to the early return at the end of the TOK_DEBUGGER case.
Although that case called WellTerminated, because it returned rather than broke
from the main switch, it failed to match an explicit semicolon terminator (if
present), making 'debugger; 1 + 2;' parse as three statements, with the first
semicolon becoming an empty statement (contrary to ECMA automatic semicolon
insertion rules).
2004-01-05 07:47:49 +00:00
jshin%mailaps.org
5930de4b8c
bug 229270 : fix non-BMP (Unicode plane 1 and above) character rendering (r=bryner, sr=dbaron)
2004-01-05 03:33:06 +00:00
neil%parkwaycc.co.uk
4f99c16dc2
Bug 229993 Disable history and security in Venkman source panes thus keeping x-jsd: URLs out of global history r=rginda
2004-01-05 00:29:13 +00:00
cbiesinger%web.de
8a2c2f9e7b
bug 157303 patch by Sergei Dolgov (sergei_d@fi.tartu.ee) r=timeless (beos only,
...
no sr needed)
Mozilla for BeOS doesn't display images on many sites.
2004-01-04 22:20:55 +00:00
cbiesinger%web.de
413b5f69f6
Bug 229969 Fix 'Warning: "/*" within comment'
...
patch by gautheri@noos.fr (Serge GAUTHERIE) r+sr=bzbarsky
2004-01-04 21:50:19 +00:00
bienvenu%nventure.com
7ab855f60c
replace nsIPref with nsIPrefBranch in mailnews, patch by arne.anka@stupido.com, r=me, sr=mscott
2004-01-04 21:47:17 +00:00
cbiesinger%web.de
0eccc94c18
bug 227769 patch by Sergei Dolgov sergei_d@fi.tartu.ee r=timeless (no sr needed,
...
beos specific)
Mouse is "sticking" at scrolling
2004-01-04 21:46:44 +00:00
cbiesinger%web.de
77d3861967
bug 230002 nsFontMetricsBeOS.cpp cleanup
...
r=sergei_d@fi.tartu.ee , no sr needed (beos only)
2004-01-04 21:38:27 +00:00
neil%parkwaycc.co.uk
73be2f928e
Bug 229692 Simplify nsMsgDBView::Sort and friends r=bienvenu sr=mscott
2004-01-04 19:46:45 +00:00
jshin%mailaps.org
94a487518f
bug 225125 : open/save dialog crashes mozilla on coming across 'invalid' filenames ; tentative measure (r=smontagu, sr=darin)
2004-01-04 08:20:52 +00:00
jshin%mailaps.org
9ab1afb535
bug 228543 : international domain names in URLs are not recognized in email body (r=mscott, sr=bienvenu). In addition, 'const' is added to 'char *' in the function definition of some functions in libmime.
2004-01-04 07:57:16 +00:00
jouni%heikniemi.net
4e0370944c
Bug 185330: Checksetup console input doesn't work on Win32. r,a=justdave
2004-01-04 07:39:00 +00:00
scott%scott-macgregor.org
61153fdd3a
Bug #66868 --> Location of profile is incorrect shown when the path contains non-ascii chars
...
Patch by Mike Kaply
r=dougt
sr=tor
2004-01-04 04:44:01 +00:00
scott%scott-macgregor.org
e988cfb9a3
Brings line/col numbers to the xml parsing error dialog.
...
Patch by Stephen Walker
2004-01-04 04:24:56 +00:00
scott%scott-macgregor.org
412d3d3827
Save ~20K by not packaging editor*Toolbar.css
...
Patch by Stephen Walker
2004-01-04 04:16:50 +00:00
scott%scott-macgregor.org
85ca4747c6
Port Bug 229450 JavaScript strict warning: redeclaration of var msgFolder
2004-01-04 04:08:52 +00:00
scott%scott-macgregor.org
af2b4ffeb6
Bug #229881 --> file menu label missing and label="&direct.label;" at bottom of window
2004-01-04 04:05:47 +00:00
caillon%returnzero.com
70d68cfda0
Bug 229437Report script errors to the console service ourselves when our script global object has no owner to report them to.Patch by Karsten D�sterloh <mnyromyr@tprac.de>r=caillon, sr=jst
2004-01-04 00:29:27 +00:00
cbiesinger%web.de
f9882ae022
bug 229990. fix another beos build bustage.
2004-01-04 00:23:41 +00:00
cbiesinger%web.de
5de508a105
bug 229988. fix beos build bustage
2004-01-04 00:15:16 +00:00
bryner%brianryner.com
39f50a0798
Keep track of whether we have successfully drawn each widget+state combination, and if we have, don't bother with a gdk_flush for error detection in the future. Bug 174585, r=roc, sr=blizzard.
2004-01-03 23:03:03 +00:00
bryner%brianryner.com
6d9aeaec58
Use gtk_window_set_icon_list() so that gtk can use the 16px icons. Bug 163257, r=blizzard.
2004-01-03 22:57:24 +00:00
silver%warwickcompsoc.co.uk
56cdfb949a
Bug 229545 Land ChatZilla 0.9.54 on trunk.
...
r=rginda@hacksrus.com
2004-01-03 22:21:35 +00:00
jgmyers%speakeasy.net
ce5088ba8f
Accept halfwidth katakana in iso-2022-jp: bug 172393 r=ftang sr=roc
2004-01-03 21:45:21 +00:00
cbiesinger%web.de
3028b31f1a
bug 162242. patch by prognathous@hotmail.com r=smontagu sr=dbaron
...
BiDi: Text input is auto switching between Arabic/Hebrew and English
2004-01-03 20:01:28 +00:00
dbaron%dbaron.org
b7de5d5648
Remove pc tests in stack walking code that prevent it from working on Fedora Core 1. b=227396 r=bryner
2004-01-03 19:16:31 +00:00
brendan%mozilla.org
5a06114b4c
Use macroized version of dbaron's fix for >65535 line script parsing bug (229006, r=shaver).
2004-01-03 18:19:51 +00:00