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

132464 Коммитов

Автор SHA1 Сообщение Дата
bzbarsky%mit.edu ef29a93fb9 Add DHTML performance test. Bug 169770, r=dbaron 2004-08-09 21:24:03 +00:00
bzbarsky%mit.edu 85ca7788b0 Eliminating mCharset mode of prescontex. Bug 253489, r+sr=roc 2004-08-09 21:19:15 +00:00
darin%meer.net 065fb7242c fixes bug 250900 "nsIBrowserHistory corrupts URI strings [was: crash when a long malformed URL is entered in the Location Bar [@js_CloneFunctionObject]]" r=biesi sr=neil 2004-08-09 21:17:12 +00:00
mostafah%oeone.com a83ee5bd73 use a function for the throbber that will work in all apps 2004-08-09 20:44:50 +00:00
brade%comcast.net 65c530876e bug 254563: <editor> xul tag broken in Firefox on Windows (missing composer.xpt
which contains nsIEditingSession.xpt); r=bsmedberg
2004-08-09 20:41:14 +00:00
mostafah%oeone.com 29990d1642 Use sunbird's logo as throbber for calendar 2004-08-09 20:37:58 +00:00
mostafah%oeone.com a7b63120f8 Add throbber image info to modern theme 2004-08-09 20:36:47 +00:00
ben%bengoodger.com d672f877b7 242653 - README.txt mentions Mozilla, not Firefox. 2004-08-09 20:01:04 +00:00
igor%mir2.org 31ff23cd2e Simpler SyntxError handling:
Since changes to fix bug 254778 made the parser the sole source of syntax error reports, it removed the need to check for errors after tree transformation.

The patch removes those checks and moves all reporting about syntax errors into omj/Parser.java.
2004-08-09 18:04:18 +00:00
mostafah%oeone.com 7af675f7b9 Checked in patches for bug 254294 2004-08-09 17:38:08 +00:00
webmail%kmgerich.com a5e2618622 Reworked back, forward, reload, stop icons for Mac Firefox 2004-08-09 17:16:08 +00:00
mostafah%oeone.com e976f23ad4 Checked in attachment 155453 from bug 220075 2004-08-09 17:13:40 +00:00
mostafah%oeone.com 524372e978 Checked in new patches to bug 220075 2004-08-09 17:13:17 +00:00
igor%mir2.org ca75e5c0c8 Fixing bug 254915: proper name lookup etc. 2004-08-09 16:57:06 +00:00
mostafah%oeone.com 2628259213 Checked in patches for bug 254737 2004-08-09 16:47:52 +00:00
neil%parkwaycc.co.uk abb54915ac Bug 193443 Fix display of copies & folders menulists p=ian@arlen.demon.co.uk r=me sr=bienvenu 2004-08-09 16:31:39 +00:00
mostafah%oeone.com 321e116cb8 Checked in patch for bug 254743 2004-08-09 16:30:10 +00:00
mostafah%oeone.com 4725c49887 Fixed bug 254399 2004-08-09 16:10:45 +00:00
bzbarsky%mit.edu 26ac90ee08 Store all error pages in cache so view-source and history do the right thing.
Enforce the "non-caching" of error pages in MustValidate().  Bug 212650 r+sr=darin
2004-08-09 15:57:34 +00:00
tor%cs.brown.edu cbd43e7eef Bug 243536 - Remove NS_NOTYETIMPLEMENTED from nsSVGTransformList.cpp.
Patch by jonathan.watt@strath.ac.uk, r=afri.
2004-08-09 15:21:06 +00:00
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