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

4794 Коммитов

Автор SHA1 Сообщение Дата
hyatt%netscape.com d741df52e2 Fix for 71262 and 71485, r=jag, srs=shaver on 71262 and hewitt on 71485 2001-03-10 01:43:09 +00:00
waterson%netscape.com 09aba8783d Fix build bustage. #include jsapi.h because Mac wants decls. 2001-03-10 01:05:53 +00:00
mkaply%us.ibm.com 06a62886d8 #70961
r=jst, sr=erik
DOM changes to implement the dir attribute (document.dir) needed for Bidi
2001-03-10 00:50:54 +00:00
waterson%netscape.com a42cf40db4 Bug 71141. Handle re-entrant script object creation by allowing 'inner' object to win and discarding 'outer' object. r=jst,jband; sr=brendan 2001-03-10 00:22:20 +00:00
ftang%netscape.com 061c1a8efb fix 71324 . delete mList so we won't leak in IME code.
r=nhotta sr=jst
2001-03-09 13:47:17 +00:00
mkaply%us.ibm.com aa2e4bc564 #70961
author=simon@softel.co.il; r=waterson; sr=erik
New layout atoms for bidi - not part of build yet due to #ifdef IBMBIDI
2001-03-09 04:15:34 +00:00
erik%netscape.com a6910ae277 bug 71370; author=simon@softel.co.il; r=attinasi; sr=erik; implement bidi
(bidirectional text) for languages such as Arabic and Hebrew; from IBM bidi
project; not part of build yet (due to #ifdef IBMBIDI)
2001-03-09 03:13:03 +00:00
dbaron%fas.harvard.edu c642b23048 Remove long-obsolete file that hasn't been part of the build since late 1998. sr=buster@netscape.com 2001-03-09 03:10:47 +00:00
jfrancis%netscape.com d916478ef5 bug 57863: pasting multiple table cells outside of table doens't work. r=cmanske;sr=kin 2001-03-09 01:36:38 +00:00
brendan%mozilla.org 08b7b66fec Recognize application/x-javascript (70439, r=timeless, sr=waterson). 2001-03-09 00:53:26 +00:00
glazman%netscape.com e0f5ee4898 Cleanup of ParseSelector() ; b=71100, r=peterl, sr=attinasi 2001-03-08 23:27:39 +00:00
dbaron%fas.harvard.edu fc78650581 Fix CSS_REPORT_PARSE_ERRORS build bustage resulting from string changes. 2001-03-08 14:25:11 +00:00
disttsc%bart.nl de797f152e This could leave you with a dangling pointer:
nsCStringKey key(nsPromiseFlatCString(aRef).get());

because the nsPromiseFlatCString object will go out of scope,
so do this instead:

  nsPromiseFlatCString flat(aRef);
  nsCStringKey key(flat.get());

sr=scc
2001-03-08 13:13:42 +00:00
disttsc%bart.nl 8b43034cef Change implicit conversion from
|NS_ConvertUTF8toUCS2|
|NS_ConvertASCIItoUCS2|
|NS_ConvertUCS2toUTF8|
|ns[C]LiteralString|
|ns[C]PromiseFlatString|

to explicit |get()|.

Add |get()| to |nsString|, remove implicit conversion operators where possible, add NS_WARNING where not (yet!).

Bug=53057, r=alecf, sr=scc
2001-03-08 08:05:05 +00:00
heikki%netscape.com 82b8f468d9 Fix gbdate.h bustage. 2001-03-08 05:34:14 +00:00
heikki%netscape.com b90a7537fb Fix typo (and OS2 bustage). r=peterv. 2001-03-08 05:00:22 +00:00
disttsc%bart.nl 35b38fa8d7 Fixing MOZ_TRACK_MODULE_DEPS builds (e.g. senna), adding "widget locale dom webshell pref necko" to REQUIRES. 2001-03-08 04:03:18 +00:00
heikki%netscape.com fffe63be14 Fixing typo. 2001-03-08 03:45:48 +00:00
heikki%netscape.com 14c19fec6e Bug 69830 , cleanup after layout split by moving duplicated files to a library that is statically linked to content and layout, and backing out changes to inline some functions that now also live in the shared lib. r=heikki, sr=smfr. Check-in by peterv. 2001-03-08 02:42:13 +00:00
heikki%netscape.com 2ced3d1826 Bug 69830, cleanup after layout split by moving duplicated files to a library that is statically linked to content and layout, and backing out changes to inline some functions that now also live in the shared lib. r=jst, sr=waterson. 2001-03-08 02:41:16 +00:00
heikki%netscape.com 02c3330243 hyatt updated the old XUL atoms as part of fix for bug 71139, keeping this up to date. 2001-03-08 01:37:02 +00:00
law%netscape.com a96fc9cbfa Part of bug 57576; adding support for getting list-style-image; r=harishd, sr=jst 2001-03-08 00:55:01 +00:00
heikki%netscape.com 613f0ebefa This should fix Mac bustage. 2001-03-07 22:39:42 +00:00
jst%netscape.com 2ec1c7ccaf WIP, adding scriptable helpers for the DOM, will be used by XPConnect eventually. Not part of the build. 2001-03-07 07:55:21 +00:00
cls%seawood.org 87c6d28d1a Add workaround for gcc 2.95.2 -O3 optimization bug involving nsCOMPtrs in a do loop.
Thanks to Johnny Stenback <jst@netscape.com> for the patch.
Bug #61501. r=waterson sr=brendan
2001-03-07 04:41:24 +00:00
hyatt%netscape.com 4409f43798 Fix for 62783. r=danm, sr=waterson 2001-03-07 01:46:13 +00:00
hyatt%netscape.com 04661bbcca Fix for state updating in Composer. r=danm, sr=sfraser 2001-03-07 01:44:56 +00:00
waterson%netscape.com 812e995120 Bug 70005. Since unrooting is conditional on whether or not mScriptObject is set, be sure to only set the root in the first place if we have a non-null script object. r=mstoltz, sr=brendan. 2001-03-07 01:12:40 +00:00
glazman%netscape.com 0c9d22b2c9 mSourceString in SelectorList was allocated, filled with a
reconstructed copy of ALL selectors in chrome and document,
unused and then deallocated ! b=70995, r=hewitt, sr=attinasi
2001-03-06 23:07:33 +00:00
hyatt%netscape.com 68229a8b4b Fix for 70877, enabling outliner. r=dr, sr=waterson 2001-03-06 22:16:42 +00:00
scc%mozilla.org c3afefa22d r=jst, avoid deprecated operator 2001-03-06 08:33:00 +00:00
hyatt%netscape.com 6946f71e1b Fix for 70809. r=attinasi, sr=brendan 2001-03-06 02:30:30 +00:00
hyatt%netscape.com 4d01b576e2 Outliner files are not part of build.
The other files are a fix for bug #70809.  r=attinasi, sr=brendan
2001-03-06 02:27:50 +00:00
dbaron%fas.harvard.edu 1261245491 Work in progress on CSS error reporting: fix the known false positives and duplicate messages and improve the error messages. It's still a hack that I wouldn't really want to enable by default, but it should be useful for debugging chrome CSS. r=glazman@netscape.com sr=attinasi@netscape.com b=65469 2001-03-06 01:57:30 +00:00
jst%netscape.com fd3dbdee7e Fixing bug in the incremental layout notification code in the sink (no bug #). The sink context was calling DidAddContent() before decrementing the mInMonolithicContainer member in the sink if we were closing a monolithic container. This made the document never incrementally reflow changes after closing a monolithic container. Fix done by Vidur, sr=vidur@netscape.com/jst@netscape.com, r=harishd@netscape.com 2001-03-06 00:52:54 +00:00
hyatt%netscape.com 3e1490c559 Fix for 68478. r=blake, sr=alecf 2001-03-05 23:28:07 +00:00
hyatt%netscape.com 76b276358c Fix for 68138. r=danm, sr=waterson 2001-03-05 22:29:52 +00:00
hyatt%netscape.com 7a319c9908 Disable attachto capability in XBL. Fix for bug#55265. r=danm, sr=alecf 2001-03-05 21:45:13 +00:00
hyatt%netscape.com c13c634b99 Fix for 57112. r=danm, sr=jst 2001-03-05 21:39:27 +00:00
hyatt%netscape.com 31849092e2 Fix for 67351. sr=waterson, r=danm 2001-03-03 22:01:01 +00:00
hyatt%netscape.com 9e4f2b23f8 Fix for 70704, r=brendan, sr=attinasi 2001-03-03 21:57:56 +00:00
harishd%netscape.com 8680ff8c03 Correcting an error.
r=heikki
2001-03-03 00:54:53 +00:00
glazman%netscape.com 99f88218ba enhancement for the 3 new attributes selectors in CSS 3. r=dbaron, sr=attinasi 2001-03-03 00:54:04 +00:00
harishd%netscape.com 65d723afce Added more properties(font,background,padding,border,z-index..etc) for getComputedStyle().
r=heikki,sr=jst.
2001-03-03 00:44:19 +00:00
harishd%netscape.com 768c3fca30 Moving a couple of methods to nsCSSProps to be used by nsGetComputedStyle().
r=heikki, sr=jst
2001-03-03 00:43:12 +00:00
harishd%netscape.com b20fb5da2d Added refresh & setcookie atoms
r=heikki,sr=vidur
2001-03-03 00:41:02 +00:00
harishd%netscape.com 9168244d76 3248 - Added Support for http headers ( link,content-base,default-style ) in the sink.
r=heikki,sr=vidur
2001-03-03 00:39:29 +00:00
harishd%netscape.com 82b8b062fc Added refresh & setcookie
r=heikki,sr=vidur
2001-03-03 00:38:39 +00:00
rods%netscape.com 9a54bce6bf Noe processing the current event so click works on alt text
Bug 65747 r=pollmann sr=attinasi
2001-03-02 15:45:35 +00:00
brade%netscape.com 3ff0c56304 add keybindings to input, textarea, editor for alt-backspace (undo); r=akkana; sr=kin 2001-03-02 14:23:04 +00:00