Commit Graph

132444 Commits

Author SHA1 Message Date
tor%cs.brown.edu
92e47fa4f7 Bug 243536 - Remove NS_NOTYETIMPLEMENTED from nsSVGTransformList.cpp.
Patch by jonathan.watt@strath.ac.uk, r=afri.
2004-08-09 14:44:54 +00:00
jshin%mailaps.org
1bef0ab4b0 add back references that were taken away by Gerv's license changing script 2004-08-09 13:42:28 +00:00
igor%mir2.org
5f71fe6973 Top call scope tracking changes:
Since E4X implementation needs to know the activation scope for tracking of default namespaces, previously an elaborated schema was added to set/restore the activation scope which relied on the fact that scrip and function with activation record should always call special entry/exit functions.

But that does not work for functions without activation records since they never call any special entry/exit pairs. So if application call such function directly, the function would not store its top scope anywhere and the E4X subsystem would not be able to get E4X library object.

The patch fixes with introduction of 2 functions, hasTopCall and doTopCall to ScriptRuntime and adding the following code prefix to each implementation of Callable.call that can start execution of script code:

    public Object call(Context cx, Scriptable scope,
                       Scriptable thisObj, Object[] args)
        throws JavaScriptException
    {
// Prefix start
        if (!ScriptRuntime.hasTopCall(cx)) {
            return ScriptRuntime.doTopCall(this, cx, scope, thisObj, args);
        }
// Prefix end
        ...

In this way there is always registered top scope during script execution and the previous elaborated schema became unnecessary so I reverted that part to almost pre-E4x state.
2004-08-09 11:00:47 +00:00
neil%parkwaycc.co.uk
7c40bacf59 Bug 248964 Can't save from source view r=doron sr=jag 2004-08-09 10:02:56 +00:00
neil%parkwaycc.co.uk
2dde67b4ba Bug 34591 Pref for automatic newsgroup count updating and message fetching p=mbockelcamp@web.de r=me sr=bienvenu 2004-08-09 09:59:32 +00:00
cbiesinger%web.de
886d11bb39 don't use eval, and don't allow entering non-numbers as values for integer prefs
Bug 254434 r=timeless sr=neil
2004-08-08 21:37:51 +00:00
timeless%mozdev.org
03c447e3b0 calling addEventListener and passing an object that is not defined yet
fails, which means that code expecting the result of that function call
is somewhat unhappy, to the tune of:
Error: inspector is not defined
Source File: chrome://inspector/content/sidebar.js
Line: 142
r=caillon rs(sr)=neil
2004-08-08 21:35:01 +00:00
timeless%mozdev.org
418c0c5ac4 Bug 199804 Unprofessional error message when download fails
patch by mcsmurf@gmx.de r=biesi sr=bz
2004-08-08 21:12:22 +00:00
timeless%mozdev.org
d07dc30c39 Bug 222357 Shift-F10 doesn't trigger context menu
rs=caillon rs=neil
2004-08-08 20:48:57 +00:00
cbiesinger%web.de
8099d6ca0a fixing bustage 2004-08-08 20:35:08 +00:00
bzbarsky%mit.edu
fd1f9b32e8 Remove unneeded nsChangeHint include. Bug 254790, r+sr=dbaron 2004-08-08 20:29:12 +00:00
cbiesinger%web.de
b8816e9960 Bug 254354 move nsIHelperAppLauncherDialog.idl into exthandler
r=bz sr=darin
2004-08-08 20:25:02 +00:00
timeless%mozdev.org
7a46bb8871 changing onclick to oncommand so that i can use a keyboard to install the
domi sidebar
rs=caillon rs=bz
2004-08-08 20:20:38 +00:00
cbiesinger%web.de
068bc72122 set an event sink on the control connection's socket transport, and forward
"looking up host", "connecting to host" and "connected to host" events to the
progress sink.
Bug 252344 r=darin sr=bz
2004-08-08 20:17:54 +00:00
timeless%mozdev.org
6c37f8cb60 Bug 240521 Crash [@ jsd_NewThreadState] when script is null
r=rginda sr=dmose
2004-08-08 19:56:49 +00:00
bzbarsky%mit.edu
bc8748b740 Even when tokenizing in quirks, view-source should be doing layout in standards
mode (if nothine else, it's faster).  Bug 254536, r+sr=rbs
2004-08-08 19:21:55 +00:00
mats.palmgren%bredband.net
9f3cd71287 Added font-size:inherit to optgroup, so that the select font-size affects options. b=185098 r+sr=bzbarsky 2004-08-08 18:44:09 +00:00
bzbarsky%mit.edu
23c14fb35a When getting scrollXY, we may not always need to flush out all reflows. Bug
245131, r=roc, sr=jst
2004-08-08 17:39:20 +00:00
bzbarsky%mit.edu
95c3ea0387 Speed up documentNeedsSecurityCheck by making the one-entry cache actually
work.  Bug 243488, r=jst, sr=brendan
2004-08-08 17:33:35 +00:00
mats.palmgren%bredband.net
851da8a741 Check fo null before using GetFocusedElement result. b=252977 r+sr=bzbarsky 2004-08-08 17:18:58 +00:00
mats.palmgren%bredband.net
8c791cd60c Added more log messages for incorrect "coords" attribute values. b=233353 r+sr=bzbarsky 2004-08-08 14:05:35 +00:00
alex%croczilla.com
a6f43925be Convert 'missing context' errors to warnings. SVG only - not part of default builds. 2004-08-08 13:47:27 +00:00
igor%mir2.org
792304a2a9 Fixing bug 254778: proper treatment of labels 2004-08-08 13:45:09 +00:00
alex%croczilla.com
1ad86b4749 Remove benign assertion, add comment & warning instead. SVG only - not part of default builds. 2004-08-08 13:44:03 +00:00
caillon%redhat.com
0412b1b0c4 Bug 123197
File picker cleanup:
- Pressing enter now actives the save/open buttons.
- Fixes issue for clobber builds where the file chooser would not always get
registered.  Unfortunately, this still can not be guaranteed to work because of
how XPCOM (mis)handles multiple components registered with the same contract
ID.  See bug 253136.
- The native widget component factory constructor now handles the logic for
which implementation to choose.  This allows me to remove the proxy logic from
the implementation itself.
- Remembers the last selected directory between invocations.
- Removes some debug stuff I forgot to remove.
- Gets rid of the static nsString cruft that got accidentally added while I was
copying over stuff from other implementations.


r+sr=blizzard
2004-08-08 11:09:51 +00:00
alex%croczilla.com
dd3b42884d Remove obsolete declarations. SVG only - not part of default builds. 2004-08-08 09:38:58 +00:00
bzbarsky%mit.edu
ff376b3812 Add support for the application/rdf+xml MIME type. Bug 61839, patch by Alex
Vincent <ajvincent@juno.com>, r=bzbarsky, sr=jst
2004-08-08 01:31:02 +00:00
mats.palmgren%bredband.net
1bed266aff Add width for letter-spacing when calculating desired width of text input controls. b=252783 r=bzbarsky sr=dbaron 2004-08-07 22:04:27 +00:00
igor%mir2.org
c70ca4f034 More switch parsing/code generation cleanups: now IRFactory constructs the proper parsed tree for the switch statement which removed the need for tree mutations in NodeTransformer and during code generation. 2004-08-07 20:08:38 +00:00
bzbarsky%mit.edu
b8eafa3fb7 Make nsHTMLSelectElement::GetOptionIndex be faster and less COM-happy. Bug
254373, r+sr=peterv
2004-08-07 18:05:05 +00:00
jshin%mailaps.org
7f66073189 bug 251241 : zh-Hant and zh-Hans are treated as zh-CN (r=smontagu, sr=neil) 2004-08-07 17:48:13 +00:00
peterv%propagandism.org
b792afe1f1 Add comment to explain the fix for bug 243392. 2004-08-07 17:25:56 +00:00
igor%mir2.org
0426521c68 Cleanup for code generation in interpreter: store itsICodeTop as instance variable to avoid clattering code with explicit passing of iCodeTop, 2004-08-07 15:42:13 +00:00
igor%mir2.org
4731a8f0f9 Switch parsing cleanup including reporting syntax error on duplicated default label 2004-08-07 15:39:55 +00:00
mats.palmgren%bredband.net
410a676e29 Fix mouse-wheel scrolling for overflow:scroll elements. b=97283 r=roc sr=dbaron 2004-08-07 14:30:30 +00:00
kestes%walrus.com
7082bf7898 add a TinderHeader Banner, its like MOTD only there is only one Banner for all tinderbox projects. 2004-08-07 13:12:10 +00:00
neil%parkwaycc.co.uk
2084b78b1e Bug 226491 <progressmeter mode="undetermined"> for Classic skin r=mscott sr=jag 2004-08-07 12:26:59 +00:00
scott%scott-macgregor.org
c94e0db87f More tweaks to the undetermined progressmeter from Neil.
Bug #226491
2004-08-07 08:53:24 +00:00
scott%scott-macgregor.org
c45986352b Bug #253775 --> Add account manager UI and per feed UI for controlling 'quick mode' where the RSS extension
only shows the summary instead of loading the webpage for the feed in the message pane.

Wording subject to change when someone suggests something better.
2004-08-07 08:47:20 +00:00
scott%scott-macgregor.org
61bf2480b5 Bug #254008 --> Make rss.rdf localizeable for localizers. 2004-08-07 08:05:10 +00:00
scott%scott-macgregor.org
7bf96abea6 Bug #254661 --> increase the default biff interval for RSS accounts. 2004-08-07 05:40:59 +00:00
bzbarsky%mit.edu
520f895468 Add ico and xbm to the "image files" list. Bug 254381, patch by Jonathan Watt
<jonathan.watt@strath.ac.uk>, r=mconnor, sr=neil
2004-08-07 02:43:55 +00:00
alex%croczilla.com
8a3b46b5f3 Move default args to constructor declaration. Fixes Windows build problem. SVG only - not part of default builds. 2004-08-06 23:17:55 +00:00
mostafah%oeone.com
438ceca882 Removing unused extension 2004-08-06 22:04:23 +00:00
darin%meer.net
7fad093c68 fixing win32 debug bustage 2004-08-06 19:48:04 +00:00
darin%meer.net
be2edb1976 fixing win32 debug bustage; we really need a debug tinderbox!! 2004-08-06 19:42:47 +00:00
timeless%mozdev.org
8f64a8b308 Bug 121730 Add number of entries actually removed from sHistory when using PurgeHistory()
r=bz sr=bz
2004-08-06 19:34:21 +00:00
mostafah%oeone.com
d5cca3f9f0 Fixed bug 253654 2004-08-06 18:02:53 +00:00
bzbarsky%mit.edu
8e58d9b316 Fixing build bustage 2004-08-06 17:51:20 +00:00
mostafah%oeone.com
c646bcc084 Checking in more files from the new them ( Bug 248399 ) 2004-08-06 17:36:44 +00:00