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
brade%netscape.com
5af1328ebd
add missing keybindings (to input, textareas, editors) for ctrl-home/end (with and without shift); r=akkana; sr=kin
2001-03-02 14:11:24 +00:00
disttsc%bart.nl
277181c660
Preparation of removing nsCString::GetBuffer. Landing everything but the actual commenting out of nsCString::GetBuffer. bug=64016, r=timeless, sr=scc
2001-03-02 09:26:57 +00:00
hewitt%netscape.com
212d80d3be
70541 - xbl content attribute setting, r=blake, sr=hyatt
2001-03-02 03:35:04 +00:00
blakeross%telocity.com
38794d139f
UIEvent button property is incorrect according to the DOM2 spec. Changing values to 0, 1, 2 (left, middle, right mouse buttons respectively) from 1, 2, 3. |event.which| continues to use the old values for backwards compatibility. This affects future xbl, js, and c++ event button checks so please see the newsgroups for more info (60703). r=timeless sr=jst
2001-03-02 03:07:53 +00:00
locka%iol.ie
79f80cf493
Removed some unused forward definitions, added documentation. b=64327 sr=vidur@netscape.com
2001-03-01 13:42:49 +00:00
dr%netscape.com
5cb164a8de
70386 (warning fix), r=timeless
2001-03-01 02:44:24 +00:00
dr%netscape.com
17ae0a3cc2
fix for 58477 (null check), r=jag, sr=hyatt
2001-03-01 01:35:12 +00:00
heikki%netscape.com
88c25f4a87
Bug 36790, support XHTML style element. Also fix CDATA section handling for title and textarea elements. r=harishd, sr=jst.
2001-02-28 23:51:35 +00:00
heikki%netscape.com
d944131b24
Bug 63559, attributes are lost on XHTML elements if the document is loaded as data. r=jst, sr=vidur.
2001-02-28 23:42:10 +00:00
jst%netscape.com
291a81bdbd
Fixing bug 70014. Making td.chOff use the correct atom when looking up the attribute 'charoff'. r=heikki@netscape.com, sr=vidur@netscape.com
2001-02-28 01:54:40 +00:00
bryner%uiuc.edu
b5b661c6d2
Bug 40611:
...
- add ctrl+tab/ctrl+shift+tab binding to tabcontrol to switch tabs
- check view visibility before shifting focus, this prevents us from
tabbing into inactive panes in a deck.
r=saari,blake. sr=ben.
2001-02-27 04:43:04 +00:00
dprice%netscape.com
199c935b04
# 65845 sr=waterson, new order files will greatly reduce the number of link warnings.
2001-02-27 04:38:19 +00:00
jst%netscape.com
3672d97775
Fixing bug 69840. Implementing XULDocument.createProcessingInstruction(). r=jag, sr=ben@netscape.com
2001-02-25 00:00:52 +00:00
pavlov%netscape.com
0401eae41a
added a parameter to a function that is part of the new imagelib.. passing nsnull to it in the image preloading code (ifdef'd out (not part of build)) sr=jst :-)
2001-02-24 23:56:07 +00:00
roc+%cs.cmu.edu
3e036291cb
Fix for bug 67478. Fix for BodyFixupRule so that if both the BODY and HTML elements have a transparent background, we make sure to give the canvas the default background (chosen by the PresShell). r=kmcclusk, sr=attinasi
2001-02-24 20:37:06 +00:00
jst%netscape.com
c843cf11a8
Initial checkin of DOM class info files needed when the DOM starts using XPConnect, this is still very much WIP, and not part of the build yet.
2001-02-24 10:26:14 +00:00
cls%seawood.org
3580b1cac0
Adding and updating necessary .cvsignore files. Bug #61550
2001-02-24 06:22:49 +00:00
scc%mozilla.org
9226b1aed1
bug #'s 69940 and 69289: r=dbaron, sr=waterson. Fix parameters to, templatization of |Substring()|.
2001-02-24 02:55:46 +00:00
jst%netscape.com
6a4e2b50c7
Fixing regression bug 69716. Make nsHTMLImageElement::GetImageFrame() always initialize the out parameter. r=heikki@netscape.com, sr=hyatt@netscape.com
2001-02-23 03:04:38 +00:00
scc%mozilla.org
6a8b3af976
bug #65219 : (work done by dbaron) r=jag, sr=scc. Remove leaking string recyclers.
2001-02-23 02:03:02 +00:00
jst%netscape.com
9c0d6974b0
Fixing bug 68493. document.body should point to the outermost frameset element in a frameset document. r=pollmann@netscape.com, sr=scc@mozilla.org
2001-02-23 02:01:30 +00:00
hyatt%netscape.com
57c3ed6078
Changing the name of my #ifdef.
2001-02-23 01:56:46 +00:00
hyatt%netscape.com
a4f1f9d564
Adding image-loading code #ifdefed to XBL. Also eliminating a warning in WIndowDragHandler while I'm here. sr=alecf, r=danm
2001-02-22 23:47:30 +00:00
hyatt%netscape.com
25dba148ef
Patch to further reduce the time of progress meter and status updates. r=pchen, sr=alecf
2001-02-22 23:46:19 +00:00
waterson%netscape.com
7954fa7f2d
Obsolete.
2001-02-22 23:38:34 +00:00
waterson%netscape.com
965909d507
Bug 69778. Be sure to shut down nsXULContentUtils. r=dbaron, sr=jst.
2001-02-22 23:36:06 +00:00
dbaron%fas.harvard.edu
a92904680d
Fix MOZ_TRACK_MODULE_DEPS bustage resulting from string and xul changes.
2001-02-22 12:48:42 +00:00
disttsc%bart.nl
74a6225eb1
Update REQUIRES to fix senna bustage
2001-02-22 12:18:48 +00:00
rods%netscape.com
bfc3f0269a
In some cases the mForm pointer doesn't get set because of the way the content can be constructed
...
and added via the DOM. So before it is used try to find and set its value again.
Bug 62799 r=harishd sr=attinasi
2001-02-22 11:33:57 +00:00
rods%netscape.com
a3cf89f1ea
The loop looking for the domText should only quit when a non-zero string is found.
...
Bug 68963 r=kmcclusk sr=attinasi
2001-02-22 11:30:53 +00:00
disttsc%bart.nl
a6f2f5861a
Mass REQUIRES update to synch up with string lib and xul changes in an attempt to fix senna bustage. r=jst, sr=cls
2001-02-22 09:35:51 +00:00
mkaply%us.ibm.com
4c5e2b9504
OS/2 TB break
...
Need PR_STATIC_CALLBACK
2001-02-22 04:47:26 +00:00
waterson%netscape.com
9fe59f23f0
Bug 43121. Move XUL content model code from RDF DLL to content DLL. r=jst,hyatt; sr=brendan.
2001-02-22 03:01:34 +00:00
disttsc%bart.nl
6322a17f43
Fix senna bustage (and bustage to be), update REQUIRES for dougt's channel changes and scc's string lib changes. r=cls
2001-02-21 22:35:36 +00:00
dougt%netscape.com
128f95aa9b
Relanding Necko Changes.
...
Revising nsIChannel to allow for overlapped i/o. This consists of three parts:
1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport.
2. Derive the nsIChannel from a nsIRequest.
2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface.
This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport.
This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections
for FTP, HTTP, and Imap (and potentially other protocols). The problem with the existing nsIChannel interface is
that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active.
r=darin@netscape.com
sr=rpotts@netscape.com
2001-02-21 20:38:08 +00:00
hyatt%netscape.com
97573598b3
Fix a frame creation slowdown caused by XBL. 2-3% speedup. r=danm, sr=waterson
2001-02-21 03:18:45 +00:00
waterson%netscape.com
9cae476583
First checked in; not yet part of the build.
2001-02-21 01:13:03 +00:00
waterson%netscape.com
8ce00cce87
These files got whacked when they shouldn't have. Reverting.
2001-02-21 00:40:13 +00:00
mkaply%us.ibm.com
755cd0a038
OS/2 Bustage
...
SHORT_LIBNAME should be 8 characters or less
2001-02-20 20:38:28 +00:00
waterson%netscape.com
f755a9f953
Bug 69475. Fix bogo checking for last night. Not sure how I lost this line. a=leaf
2001-02-20 20:07:10 +00:00
dbaron%fas.harvard.edu
1257148b20
Make ImageListener not confuse leak logging by doing refcounting the way we do it everywhere else. r=disttsc@bart.nl sr=brendan@mozilla.org b=64452
2001-02-20 13:46:59 +00:00
dbaron%fas.harvard.edu
8411695789
Remove static constructor for nsStyleColor. r=disttsc@bart.nl sr=brendan@mozilla.org b=67341
2001-02-20 13:44:43 +00:00
waterson%netscape.com
00a1e8d96e
Bug 39054, redux. Hack around problem (?) with XBL child nodes: we'll just query for the list of real kids up front. Also, need to break 'AddSubtreeToDocument()' into pre- and post-order steps. r=hyatt, sr=brendan
2001-02-20 01:05:34 +00:00
dbaron%fas.harvard.edu
4727322c9d
Fix MOZ_TRACK_MODULE_DEPS bustage by adding pref to REQUIRES.
2001-02-20 00:30:53 +00:00
dbaron%fas.harvard.edu
afb1fb7cbc
Fix MOZ_TRACK_MODULE_DEPS bustage by updating REQUIRES.
2001-02-20 00:21:26 +00:00
dbaron%fas.harvard.edu
0459076110
Fixing objdir build bustage by adding $(srcdir)/ to directories in include path.
2001-02-20 00:17:30 +00:00
heikki%netscape.com
5c811dfbf3
Splitting layout into two libraries, layout and content. r=jst@netscape.com, sr=waterson@netscape.com
2001-02-19 21:50:04 +00:00
Peter.VanderBeken%pandora.be
5ce9c672bd
Content/Layout splitup. Not part of default build. r=jst@netscape.com, sr=waterson@netscape.com.
2001-02-19 20:11:27 +00:00
Peter.VanderBeken%pandora.be
fb23d82b85
Content/layout split-up. Not part of the build. r=jst@netscape.com, sr=waterson@netscape.com.
2001-02-19 18:11:03 +00:00
Peter.VanderBeken%pandora.be
fc57601cdc
Content/layout split-up. Not part of the build. r=jst@netscape.com, sr=waterson@netscape.com.
2001-02-19 17:51:42 +00:00
Peter.VanderBeken%pandora.be
64757cba91
Corrected CAPS. r=jst@netscape.com, sr=waterson@netscape.com.
2001-02-19 14:29:10 +00:00
Peter.VanderBeken%pandora.be
399dfde5bd
Removing to correct CAPS. r=jst@netscape.com, sr=waterson@netscape.com.
2001-02-19 14:27:36 +00:00
jst%netscape.com
f57a187ea6
Fixing win32 build bustage.
2001-02-19 14:19:42 +00:00
jst%netscape.com
86fcb5549b
Removing unused file.
2001-02-19 13:14:10 +00:00
heikki%netscape.com
915749084a
Checking in changes needed for splitting layout into two separate libraries. r=jst@netscape.com, sr=waterson@netscape.com. Not part of the default build yet.
2001-02-19 12:55:42 +00:00
rods%netscape.com
8881a357b3
making spacebar click on key up
...
Bug 68850 sr=attinasi
2001-02-19 12:36:01 +00:00
heikki%netscape.com
6181e608fc
Adding new files needed for splitting layout into two separate libraries (some of these files have been moved from mozilla/layout). r=jst@netscape.com, sr=waterson@netscape.com. Not part of the default build yet.
2001-02-19 12:21:27 +00:00
heikki%netscape.com
d59b45ca9f
Adding new files needed for splitting layout into two separate libraries (some of these files have been moved from mozilla/layout). r=jst@netscape.com, sr=waterson@netscape.com. Not part of the default build yet.
2001-02-19 12:10:13 +00:00
heikki%netscape.com
de35f432ad
Adding new files needed for splitting layout into two separate libraries (some of these files have been moved from mozilla/layout). r=jst@netscape.com, sr=waterson@netscape.com. Not part of the default build yet.
2001-02-19 11:56:40 +00:00
dbaron%fas.harvard.edu
0ec8f2875d
Remove static constructors from nsXULSortService and nsXULTemplateBuilder. r=waterson@netscape.com sr=brendan@mozilla.org b=67310
2001-02-18 17:04:11 +00:00
heikki%netscape.com
de8d58f084
Checking in new files needed for layout split. Not part of the build yet.
2001-02-17 09:53:29 +00:00
dcone%netscape.com
999dab80e2
r=rods sr=attinasi Passing in the title to begindocument
2001-02-16 17:36:02 +00:00
cmanske%netscape.com
3baa7b403e
Minor change to remove compile warning
2001-02-16 05:12:08 +00:00
cmanske%netscape.com
c7fb9e7600
Fixed table selection bug 68860. r=brade, sr=sfraser
2001-02-16 03:33:12 +00:00
hyatt%netscape.com
6a31cf1557
Not part of build.
2001-02-16 02:21:34 +00:00
hyatt%netscape.com
3af1eab1be
Not part of build.
2001-02-16 01:37:19 +00:00
hyatt%netscape.com
19a77a20e0
Fixing Win32 bustage on pink's checkin. r=pink
2001-02-15 22:20:44 +00:00
pinkerton%netscape.com
794f5e3b1b
force trees to synchronously update the area invalidated by a mousewheel scroll. r=bryner,a=hyatt, bug#63465
2001-02-15 22:07:06 +00:00
akkana%netscape.com
20001beffe
25779: alternate win cut/copy/paste keys. r=brade, sr=sfraser
2001-02-15 21:53:13 +00:00
hyatt%netscape.com
e050817098
Fix for 67739. r=pierre,attinasi, sr=ben
2001-02-15 21:25:31 +00:00
hyatt%netscape.com
6d784c14e8
Fix for 67739. r=pierre,attinasi sr=ben
2001-02-15 21:24:47 +00:00
radha%netscape.com
b2d6bb81e1
Fix for bug # 39938. Client side redirection messes up SH. r=rpotts, adamlock
2001-02-15 19:10:16 +00:00
dbaron%fas.harvard.edu
f17bd918ed
Adding newline to end of file to fix HP bustage.
2001-02-15 15:22:22 +00:00
jfrancis%netscape.com
fed9703e2b
bug 50497: plaintext copy loses newlines on paste
bug 57292: copy of table cell contents shouldn't copy cell
bug 57170: some inline style not preserved across copy paste
for all above: r=akkana; sr=sfraser
2001-02-15 13:22:26 +00:00
jfrancis%netscape.com
d4b459cfee
bug 63760: improving iterator speed in aid of selection performance and many editor operations. r=akkana; sr=sfraser
2001-02-15 13:19:14 +00:00
hyatt%netscape.com
19bd97bd08
Not part of build.
2001-02-15 09:43:11 +00:00
aaronl%chorus.net
ab4d0dcaee
Pref accessibility.browsewithcaret implemented, bug=49508, r=sfraser, sr=waterson
2001-02-15 05:07:46 +00:00
dcone%netscape.com
dafca2054b
Changed the API to BeginDocument.. changed the call in here. sr=attinasi r=rods
2001-02-15 03:52:13 +00:00
hyatt%netscape.com
7842c9962e
Fix for 68103. r=the world
2001-02-14 20:21:04 +00:00
dcone%netscape.com
30f56e20d6
Release the Presentation Context.. fixes printing leak r=kmmclusk, sr=attinasi
2001-02-14 05:45:05 +00:00
akkana%netscape.com
f83153ce0d
18508: Allow for user-specified XBL bindings. sr=hyatt
2001-02-14 01:24:45 +00:00
waterson%netscape.com
5cc33330bf
Backing out changes for 39054, which caused several template regressions.
2001-02-13 19:22:56 +00:00
dcone%netscape.com
b1a810b0aa
had to comment out the release.. the Mac is breaking.. have to figure out why
2001-02-13 15:55:34 +00:00
dcone%netscape.com
090b014432
Added the release for the printing presentation context, fixes big leak. r=kmcclusk sr=attinasi
2001-02-13 15:05:49 +00:00
glazman%netscape.com
55715aa6e7
patch for #62607 : cssText field of CSSRule is incomplete, missing curly braces. r=brade, sr=attinasi
2001-02-13 14:10:38 +00:00
glazman%netscape.com
9968e71541
patch for #65448 : css parser refused multiple ID selectors in same sequence; r=dbaron,attinasi sr=attinasi (buster's delegation)
2001-02-13 14:06:29 +00:00
waterson%netscape.com
7aee9a2cc1
Fix linux bustage.
2001-02-13 07:55:34 +00:00
waterson%netscape.com
ce93635aec
Bug 39054. Make XUL templates work properly inside XBL. r=hyatt,alecf; sr=ben
2001-02-13 07:04:55 +00:00
nhotta%netscape.com
198263a11a
Changed to control entity (CER) generation by a document charset, bug 65324, r=jst, sr=vidur.
2001-02-13 01:00:14 +00:00
glazman%netscape.com
2156fd088a
#52381 corrects pseudo-elmts handling in nsCSSSelector::ToString ; r=attinasi,saslawsky sr=vidur,waterson
2001-02-12 13:04:06 +00:00
buster%netscape.com
469981a979
bug 64696 (DOM UI events should be allocated from a recycler)
...
r=attinasi
sr=waterson
2001-02-12 06:54:31 +00:00
disttsc%bart.nl
3d2d80d536
Back out dougt's channel changes
2001-02-12 03:14:23 +00:00
disttsc%bart.nl
901482d14c
From Small Gods, by Terry Pratchett:
...
The light was brilliant, crystalline, in a black sky filled with stars.
'Ah. There really is a desert. Does everyone get this?' said Brutha.
WHO KNOWS?
'And what is at the end of the desert?'
JUDGEMENT.
Brutha considered this.
'Which end?'
Death grinned and stepped aside.
What Brutha had thought was a rock in the sand was a hunched figure, sitting clutching its knees. It looked paralysed with fear.
He stared.
'Vorbis?' he said.
He looked at Death.
'But Vobis died a hundred years ago!'
YES. HE HAD TO WALK IT ALL ALONE. ALL ALONE WITH HIMSELF. IF HE DARED.
'He's been here fore a hundred years?'
POSSIBLY NOT. TIME IS DIFFERENT HERE. IT IS . . . MORE PERSONAL.
'Ah. You mean a hundred years can pass like a few seconds?'
A HUNDRED YEARS CAN PASS LIKE INFINITY.
The black-on-black eyes stared imploringly at Brutha, who reached out automatically, without thinking . . . and then hesitated.
HE WAS A MURDERER, said Death. AND A CREATOR OF MURDERERS. A TORTURER. WITHOUT PASSION. CRUEL. CALLOUS. COMPASSIONLESS.
'Yes. I know. He's Vorbis,' said Brutha. Vorbis changed people. Sometimes he changed them into dead people. But he always changed them. That was his triumph.
He sighed.
'But I'm me,' he said.
Vobis stood up, uncertainly, and followed Brutha across the desert.
Death watched them walk away.
The End.
2001-02-12 03:12:57 +00:00
dbaron%fas.harvard.edu
b6fbdb4794
Update REQUIRES to fix senna bustage.
2001-02-10 03:06:49 +00:00
dougt%netscape.com
1b9ca82439
Revising nsIChannel to allow for overlapped i/o. This consists of three parts:
...
1. Factoring nsIChannel into a protocol specific part, the nsIChannel, and a socket specific, the nsITransport.
2. Derive the nsIChannel from a nsIRequest.
2. Changes the notification system from necko and the URILoader to pass the nsIRequest interface instead of nsIChannel interface.
This goal stems from wanting to be able to have active AsyncRead and AsyncWrite operations on nsSocketTransport.
This is desired because it would greatly simplify the task of maintaining persistent/reusable socket connections
for FTP, HTTP, and Imap (and potentially other protocols). The problem with the existing nsIChannel interface is
that it does not allow one to selectively suspend just one of the read or write operations while keeping the other active.
The full details of the change on written up in the netlib newsgroup.
r=darin@netscape.com
sr=rpotts@netscape.com
2001-02-10 00:16:26 +00:00
jst%netscape.com
57fb4072b5
Fixing regression bug 68139. Accessing radiobutton.value always returning the defalue value. r=harishd, sr=vidur, a=blizzard@mozilla.org/asa@mozilla.org
2001-02-09 23:45:41 +00:00
harishd%netscape.com
bc2996109d
68008 - After evaluating the external JS content make sure to that the parser is not blocked before resumeparsing.
...
r=jst sr=vidur a=blizzard
68160 - Set stream listener state to eOnStop only on the final context.
r=nisheeth sr=vidur a=blizzard.
2001-02-09 22:36:23 +00:00
hyatt%netscape.com
c6ab0beeea
XBL insertion point fixes: 67990, 67574, and the dependent bug 55292 all get fixed.
2001-02-08 23:24:55 +00:00
waterson%netscape.com
a964382ebd
Bug 67900. Unitialized bare pointer with nsCOMPtr, avoiding crash if GetElementResource() fails, and fixing a leak to boot. r=scottip,rjesup; sr=alecf; a=blizzard
2001-02-08 21:25:13 +00:00
disttsc%bart.nl
ef1c235d5c
Fix hotaix bustage, also see bug 67961.
2001-02-07 13:02:11 +00:00
jfrancis%netscape.com
585e0076e3
fix for text widget copy -> html composer paste giving you a seperate pre block for each paste. (bugzilla refuses to cough up the bug number right now).
2001-02-07 10:34:17 +00:00
pierre%netscape.com
9af01acf22
Reinstate my changes that were backed out 10 days ago. #43457 split nsStyleSpacing into 4 smaller structures: nsStyleBorder, nsStylePadding, nsStyleMargin, nsStyleOutline. r=attinasi,sr=buster.
2001-02-07 09:57:26 +00:00
hyatt%netscape.com
295c45ae29
Fix for 67435. sr=ben
2001-02-07 07:45:36 +00:00
jst%netscape.com
ea66f70179
Fixing bug 37763. Making applet elements that are not associated with an Java applet still be scriptable as a normal DOM node. r=pollmann@netscape.com, sr=jband@netscape.com
2001-02-07 07:39:20 +00:00
joki%netscape.com
ce97afea1d
Fix for bug 53669, allow combination :focus/:active state notifications so that pre-focused HTML4 buttons work. r:saari,sr:jst
2001-02-07 07:05:56 +00:00
blakeross%telocity.com
a5858da5bf
Titlebar when viewing images not localizable (57549). r=attinasi sr=erik
2001-02-06 23:39:46 +00:00
harishd%netscape.com
a7c109086e
Use resumeParsing instead of EnableParse().
...
r=jst
sr=vidur
2001-02-06 23:31:17 +00:00
scc%mozilla.org
05a7c0e1fc
bug #53067 : r=danm, sr=alecf. Eliminate copying versions of |BeginReading|, |EndReading|, |BeginWriting|, |EndWriting|, and fix callers
2001-02-06 23:18:20 +00:00
rods%netscape.com
baed08e917
Printing of selected frameset frames and Iframes
...
Bug 66783 r=dcone sr=buster,attinasi
2001-02-06 23:03:17 +00:00
blakeross%telocity.com
733943b5fb
Just moving a variable declaration to declare it only when needed...
2001-02-06 05:50:31 +00:00
pollmann%netscape.com
26e414d3ed
Bug 42892: Split FlushPendingNotifications in to content and content+frames cases (speed up content list access), r=jst@netscape.com, sr=vidur@netscape.com
2001-02-06 05:46:46 +00:00
jst%netscape.com
d6d94da0ff
Fixing regression (bug 67713) that I introduced in my content code re-org in the end of december. Adding a missing interface to the QI implementation of nsHTMLButtonElement. r=nisheeth@netscape.com, sr=n/a
2001-02-06 02:31:31 +00:00
jst%netscape.com
f9f8015c1c
Fixing bug 67563. Adding null pointer checks to avoid crasing when accessing certain properties on orphan OPTION, TD and TH elements. r=harishd@netscape.com, r=nisheeth@netscape.com, sr=vidur@netscape.com
2001-02-06 02:11:30 +00:00
brade%netscape.com
09d2420eb6
cleanup of FetchDesiredX; r=kin; sr=sfraser
2001-02-05 15:43:46 +00:00
disttsc%bart.nl
8d5cb84a07
Replace iostream.h cerr << dependancy with NS_WARNING. bug=67536, r=jst, sr=blizzard
2001-02-03 09:09:24 +00:00
jst%netscape.com
5565218676
Moving methods around to make this file make more sense. no code changes.
2001-02-03 03:50:04 +00:00
anthonyd%netscape.com
46fe8b86d6
fix for bug # 67007 user defined tags being consumed
...
sr= harishd
r= kin
2001-02-03 01:24:53 +00:00
heikki%netscape.com
87c0c7accd
Bugs 53615 and 51815. XHTML title element did not change window title, and textarea did not have default text. r=harishd, sr=vidur.
2001-02-03 01:16:20 +00:00
heikki%netscape.com
73b1eaa48b
Bug 44564. Problems with internal subset, especially with view source XML. Also fixed CDATA section problems. Some cleanups. r=harishd, sr=vidur.
2001-02-03 01:13:55 +00:00
harishd%netscape.com
2863e449d8
67426 - Fixing up a regression caused when fixing bug 54453.
...
r=heikki
2001-02-02 22:07:38 +00:00
attinasi%netscape.com
26938418e4
Leave floated list-items as display:list-item. b=32200, r=buster sr=waterson
2001-02-02 21:16:00 +00:00
kin%netscape.com
667694cf0f
Backing out part of fix for bug #67007 that cause bug #67408 . (Can't type newlines in textareas)
...
a=leaf
2001-02-02 16:32:27 +00:00
jst%netscape.com
15cb2acddd
Fixing bug 64755. Moving code around to make plugins instantiated from an <object> tag be scriptable. r=pollmann@netscape.com, sr=hyatt@netscape.com
2001-02-02 11:31:08 +00:00
rods%netscape.com
b71790af51
Added UI for printing selectd frame
...
Bug 66783 r=kmcclusk,ben,dcone sr=buster
2001-02-02 08:42:53 +00:00
hyatt%netscape.com
c87fc4c388
Fix linux bustage.
2001-02-02 02:05:57 +00:00
jst%netscape.com
41c0bd2ce3
Fixing bug 53860. Making inputElement.getAttribute('checked') return the value 'checked' if the attribute was ever set. r=pollmann@netscape.com, sr=rpotts@netscape.com
2001-02-02 01:34:57 +00:00
hyatt%netscape.com
7ebda9aa1c
Checking in new files (r=ben, sr=brendan).
2001-02-02 01:14:07 +00:00
hyatt%netscape.com
45c08e6635
Fix for 55292, r=ben, sr=brendan
2001-02-02 00:54:47 +00:00
anthonyd%netscape.com
e6a453fa48
bug fix for 67007, user tags being consumed
...
r=akkana
sr=harishd
2001-02-01 23:57:24 +00:00
dcone%netscape.com
12c55eaaf1
Took out bad #ifdefs.. added newline for warnings
2001-02-01 21:44:18 +00:00
disttsc%bart.nl
d1282d3594
Fix "No newline at end of file" which causes bustage on some platforms. r=bryner
2001-02-01 21:37:05 +00:00
dcone%netscape.com
d630ea8cb3
Fixed a define problem
2001-02-01 21:30:14 +00:00
harishd%netscape.com
59e1414dad
54453 - Killing an annoying assertion.
...
r=heikki
2001-02-01 21:04:48 +00:00
dcone%netscape.com
d61654b75e
Added routines for finding the currently selected frame. sr=buster. r=peterl
2001-02-01 20:49:10 +00:00
kmcclusk%netscape.com
03143956d6
Removed unused code in view module. bug 62675 sr=roc+moz r=rods@netscape.com
2001-02-01 06:00:02 +00:00
sfraser%netscape.com
66ee4f9b30
Fix the modifier for the cmd_cut binding, bug 67113. r=jag, akkana, sr=hyatt
2001-01-31 20:08:13 +00:00
gagan%netscape.com
79713bc4c2
Optimization for scheme comparison of URIs. See bug 66577 for details. r=darin, sr=brendan@mozilla.org
2001-01-31 01:33:03 +00:00
jst%netscape.com
6428a91973
Fixing bug 44615. Making the default value of radio buttons be "on" to match older browsers. r=rods@netscape.com&heikki@netscape.com, sr=brendan@mozilla.org.
2001-01-30 04:22:24 +00:00
dbaron%fas.harvard.edu
6269a933a7
Add lwbrk to REQUIRES to fix MOZ_TRACK_MODULE_DEPS bustage.
2001-01-30 01:52:15 +00:00
dbaron%fas.harvard.edu
66dccc5cf8
Add lwbrk to REQUIRES to fix MOZ_TRACK_MODULE_DEPS bustage.
2001-01-30 01:27:47 +00:00
disttsc%bart.nl
08b5e422c9
Fix mac bustage.
2001-01-30 00:23:02 +00:00
disttsc%bart.nl
f316491b83
Clean-up of nsDocument.(h|cpp), r=jst, sr=vidur
2001-01-29 23:17:55 +00:00
saari%netscape.com
9263159608
fix for crashing plugin problem 65687, r=pinkerton, sr=waterson
2001-01-28 01:36:21 +00:00
dbaron%fas.harvard.edu
6a1cef6f9a
Remove trailing semicolons after all uses of MOZ_DECL_CTOR_COUNTER to quiet build warnings on Mac. b=60415 a=brendan@mozilla.org
2001-01-27 23:06:33 +00:00
dbaron%fas.harvard.edu
1e046d05c0
Reduce unnecessary #includes to speed up compilation. r=bryner/sfraser sr=alecf b=64023
2001-01-27 16:58:15 +00:00
rods%netscape.com
99666eed8c
This checkin enables mozilla to support the printing of selection, the printing of page ranges, and
...
the printing of headers and footers.
Printing of selection is implemented by the frames figuring out if they are in the selection and painting
if they or not they they don't paint. This also only allows the printing of the first page of
selections, alothough it is well documented where this is implemeted so it can be removed.
Bugs 63426, 31218, 61075 r=dcone,kmcclusk,erik,buster sr=waterson
2001-01-27 14:09:34 +00:00
attinasi%netscape.com
73fc7b1a0d
Performance fix: moves content-specific queries out of SelectorMatches to reduce number of times called in rule matching. b= 53620 r=dbaron sr=waterson
2001-01-27 05:48:41 +00:00
hyatt%netscape.com
61e8d2ad00
Impl getAnonymousElementByAttr, r=jst, sr=ben
2001-01-27 00:43:54 +00:00
locka%iol.ie
3131997624
Changed docshell so it turns the mouse pointer "busy" in the associated window while it is loading a document. Removed the hack in the navigator chrome that used the throbber status to set the busy pointer. b=30375 sr=rpotts@netscape.com
2001-01-26 12:35:32 +00:00
harishd%netscape.com
0b29f035c9
Removed CNavDTD dependency.
...
r=jst
sr=vidur
2001-01-25 19:33:57 +00:00
dbaron%fas.harvard.edu
b4301cc0a7
Change the way nsDocument stores its children by replacing separate nsVoidArrays for prolog and epilog with a single nsISupportsArray that also holds the root element. Using this change, simplify many of the child handling methods in nsDocument (and fix some bugs in them). Since nsDocument no longer uses prolog and epilog, remove AppendToProlog and AppendToEpilog from nsIDocument. b=47850 r=jst@netscape.com sr=vidur@netscape.com
2001-01-25 14:19:38 +00:00
mcafee%netscape.com
7ecf530933
Backing out pierre's change from 1/20 for performance reasons (66263). r=attinasi, a=granrose, phil
2001-01-25 02:58:12 +00:00
brade%netscape.com
ee79b12867
always absolutize urls in html copy encoder (doing the right thing is covered in bug #32768 )
2001-01-24 14:59:57 +00:00
darin%netscape.com
6a7567992b
Bug 62566. nsIChannel::AsyncWrite interface revision and related cleanup.
...
r=dougt@netcape.com , sr=mscott@netscape.com .
2001-01-23 22:10:34 +00:00
jst%netscape.com
91b8195823
Fixing bug 57772. Hooking document.getSelection() into window.getSelection().toString() which does the right thing (i.e. doesn't produce pretty printed text). r=heikk@netscape.com, sr=rpotts@netscape.com
2001-01-23 07:45:08 +00:00
jst%netscape.com
88fbf3f6f2
Fixing bug 47733. Making document.implementation.createDocument() set up the root element in the document correctly so that it's parent and owner document is the document that it's in. r=heikki@netscape.com, sr=rpotts@netscape.com
2001-01-23 07:42:20 +00:00
pinkerton%netscape.com
1e64805e30
Fixes a leak where an object registered to listen to multiple IID's
...
wouldn't get released until the manager shut down. Now gets released
when the last IID listened to is removed. r=danm,a=hyatt.
2001-01-23 03:10:25 +00:00
jst%netscape.com
5407409933
Checking in rods@netscape.com's patch for bug 60049. The implementation of document.clear() in mozilla was incorrectly clearing the whole document, the same method in NS 4.x and IE seem to do nothing so with this patch document.clear() is a nop. r=jst@netscape.com, sr=vidur@netscape.com
2001-01-23 02:20:33 +00:00
pinkerton%netscape.com
0d201aeb75
updating some comments r=saari, sr=sfraser
2001-01-23 00:40:24 +00:00
vidur%netscape.com
6962d4a540
Fix for bug 63081. We remove carriage returns passed to us by the parser in the copy from the sink buffer to the content model. r=jst
2001-01-22 23:11:02 +00:00
blakeross%telocity.com
a3fe5e9a95
Fix 66135: use option, not command, for moving to and selecting previous/next word on mac. r=timeless sr=sfraser
2001-01-22 20:34:04 +00:00
jst%netscape.com
6d379787a0
Removing unused variable.
2001-01-22 06:38:19 +00:00
hewitt%netscape.com
b061c11ad1
52381 - DOM selectorText implementation, r=attinasi/jst, sr=waterson
2001-01-22 04:03:48 +00:00
pierre%netscape.com
bda1df7356
added brakets in switch() statements in a vain attempt to fix the unix build bustages
2001-01-20 23:33:29 +00:00
pierre%netscape.com
62bf433a35
#43457 split nsStyleSpacing into 4 smaller structures: nsStyleBorder, nsStylePadding, nsStyleMargin, nsStyleOutline. Review=attinasi. Pending Approval: buster.
2001-01-20 22:46:54 +00:00
kmcclusk%netscape.com
5ae11d815b
Defer invalidates using PL_event so they can be combined with reflow invalidates. This improves performances by reducing the number of paint messages and eliminates flicker bug 36849 sr=roc+moz@cs.cmu.edu r=rods@netscape.com
2001-01-20 04:59:39 +00:00
axel%pike.org
8648842440
not part of build, code by peterv, r=me, fixing XPathProcessor, nsISynchLoader, cleanup
2001-01-19 21:24:44 +00:00
jst%netscape.com
ca95f73574
Fixing bug 54780. Checking in patch from heikki@netscape.com that makes nsDOMImplementation::CreateDocument() return the return value from NS_NewDOMDocument() instead of just ignoring it. r=me, r=disttsc@bart.nl, sr=none (trivial change).
2001-01-19 07:56:38 +00:00
saari%netscape.com
415d201213
Fix for 54406, tabbing through links with multiple frames doesn't work. r=byrner, sr=waterson
2001-01-19 01:28:27 +00:00
buster%netscape.com
6a93e50850
bug 56432 ()
...
the problem was a factorial algorithm for finding primary frames.
fixed by added a hinting mechanism that takes advantage of existing
primary frame cache, greatly reducing the cost for the common case.
r=rods
sr=waterson
2001-01-16 22:10:04 +00:00
blakeross%telocity.com
c72ba88ee8
Fix 65025: scrollbars in Mac Classic are wrong color. patch by lordpixel. r=blake sr=blizzard
2001-01-16 01:27:20 +00:00
axel%pike.org
bcbac73b27
not part of build, code by axel@pike.org, r=peterv; code by peterv@netscape.com, r=me. Fixing 59937, xpath function lib complete, 59649, 60059, 47720; building windows standalone, 46640; general code cleanup, fixing warnings; XPathProcessor and XSLTProcessor available to JS (work in progress)
2001-01-12 20:06:48 +00:00
bratell%lysator.liu.se
76de73b0fc
Cleanup of the HTML -> plain text converter. Bug 62189. r=anthonyd@netscape.com sr=vidur@netscape.com
2001-01-12 07:26:39 +00:00
rods%netscape.com
be43d5e2a0
must return NS_OK from DOM calls, this will make the button look enabled when enabled
...
Bug 63722 r=attinasi sr=buster
2001-01-11 15:14:47 +00:00
jst%netscape.com
adf202b502
Fixing bug 63967. Fixing a crash that happened when the .src of an image was set and the base URL was not available. r=timeless@mac.com, disttsc@bart.nl, sr=vidur@netscape.com
2001-01-10 22:41:47 +00:00
akkana%netscape.com
21558c5361
42452,61173: output formatted lists even in unformatted plaintext output. r=bratell, sr=sfraser
2001-01-10 22:08:08 +00:00
heikki%netscape.com
b119e95db4
Some raw interface pointers to nsCOMPtrs, potential null pointer access fix, fixing two wrong eventStructTypes. No bug number. r=saari, sr=waterson.
2001-01-10 20:21:09 +00:00
jst%netscape.com
06ad76ab78
Fixing bug 60920. Adding type cheks to the document.form.select.options[n] setter so that we don't crash if someone tries to set the value to an invalid type (i.e. not a HTMLOptionElement). sr=brendan@mozilla.org, r=pollmann@netscape.com
2001-01-10 05:11:05 +00:00
ben%netscape.com
c85b487427
bug 56719, support deep merging for XUL overlays; 57108, remove the hidden form
...
from all XUL documents and remove the document.controls collection that
referenced hidden form's elements collection. r=waterson@netscape.com ,
a=hyatt@netscape.com
2001-01-10 01:08:23 +00:00
anthonyd%netscape.com
101cc14924
fix for bug #59003 fix for keybindings
...
sr=kin@netscape.com
r=akkana@netscape.com
2001-01-09 23:22:56 +00:00
sfraser%netscape.com
a0dda75954
Convert nsIDiskDocument to xpidl, and change it from using nsFileSpecs to nsIFiles. Bug 62567, r= buster, ducarroz, adamlock, sr=kin
2001-01-09 22:47:02 +00:00
anthonyd%netscape.com
dbd36fbbfb
bug fix for 62796
...
sr=kin@netscape.com
a=jfrancis@netscape.com
r=jst@netscape.com
2001-01-09 21:44:35 +00:00
dcone%netscape.com
3b139c38ef
Took outsome debug code which snuck in.
2001-01-09 20:41:05 +00:00
jst%netscape.com
987e96df6b
Removing declaration of a function that is no longer in mozilla.
2001-01-09 05:26:22 +00:00
jst%netscape.com
15e7a09cce
Removing duplicated code from layout, nsDOMDocumentType does the same things nsXMLDocumentType does and the former is the one that is used.
2001-01-09 05:13:10 +00:00
jst%netscape.com
b74658e1ff
Fixing bug 64642. This is a regression caused in my large content code reorg/cleanup that I did a few weeks ago, SetDocument on a from control was was forwarding the call to the wrong base class, it was calling nsGenericElement::SetDocument() in stead of nsGenericHTMLElement::SetDocument() and that caused style attributes to not get reparsed when form controls were added to a document. r=pollmann@netscape.com
2001-01-09 02:53:33 +00:00
disttsc%bart.nl
8865de7afe
Add support for showing keycode (VK_FOO) accelerators in menuitems. bug=47426, r=sspitzer,jst,saari, a=hyatt
2001-01-09 01:28:36 +00:00
jst%netscape.com
99150cedb1
Fixing bug 63943. Accessing .offsetXXX properties on elements must call FlushPendingNotifications() on the document and not only on the pres shell to make sure the sink flushes all its content so that frames exists for all elements. r=heikki@netscape.com, sr=rpotts@netscape.com
2001-01-09 01:26:05 +00:00
jst%netscape.com
657a77d24e
Code cleanup, no bug. Make the implementations of methods whose return type is declared as NS_IMETHOD return NS_IMETHODIMP and not just nsresult. r=heikki@netscape.com
2001-01-09 00:03:42 +00:00
jst%netscape.com
75f4f0f6f9
Trivial code cleanup that removes the need for a kungFoDeathGrip. r=heikki@netscape.com
2001-01-08 23:43:56 +00:00
jst%netscape.com
360c1f537e
Trivial code cleanup, no bug. Removing unused variable and using nsCOMPtr in stead of doing manual addref/release. r=harishd@netscape.com
2001-01-08 22:16:52 +00:00
akkana%netscape.com
d53a276b40
33088: restructure editor output routines. r=kin,buster,adamlock sr=sfraser
2001-01-08 21:01:29 +00:00
dcone%netscape.com
0f7ab3cd10
Added nsIPrintContext interface.
...
Added this so you can now tell if your laying out to a printer.
r=attinasi sr=buster
2001-01-08 20:26:05 +00:00
pierre%netscape.com
7d4f85337f
Not part of the build. Momentarily check in the StyleContext metrics before doing deeper changes.
2001-01-08 00:24:41 +00:00
cls%seawood.org
207f9c6a8c
Backing out anthonyd's previous checkin as it is causing text boxes to not work anywhere on at least beos, linux & win32.
...
Bug #62796
2001-01-07 15:11:50 +00:00
anthonyd%netscape.com
433f8f528a
bug fix for 62796 - various range fixes, including a crasher in Range::deleteContents()
...
sr=kin@netscape.com
r=jst@netscape.com
2001-01-07 04:52:23 +00:00
jst%netscape.com
f3491667e7
Fixing bug 64513. Adding missing version number to a contract id. r=blakeross@telocity.com
2001-01-07 03:06:19 +00:00
bryner%uiuc.edu
7b1af9e0fe
Bug 49273 - always set the hover state on content when we get a MOUSE_ENTER event. This prevents problems with some window managers that send MOUSE_LEAVE and MOUSE_ENTER events before ButtonPress events. r=saari, sr=blizzard.
2001-01-06 05:58:47 +00:00
jst%netscape.com
b1ebf176a1
Fixing regression introduced in my huge checkin a few weeks ago, backing out the change I made while doing some code cleanup/reorg
2001-01-05 23:26:05 +00:00
blakeross%telocity.com
f7bc22e0b4
Fix 54963: mousewheel text sizing not bounded, and lower upper bound (to 2000%). patch by Jonas Sicking (sicking@bigfoot.com). r=bryner,blake a=ben
2001-01-05 23:06:09 +00:00
heikki%netscape.com
0c4e47bf44
Bug 45420, createCDATASection should check for input ']]>' and some null pointer checks. Removed a bogus comment. Original patch from Taras Tielkes, needed to modify a little because we are now using nsAReadableStrings. r=jst, a=vidur.
2001-01-05 00:35:20 +00:00
bryner%uiuc.edu
d1f174bb11
Bug 62763 - null check to prevent crash when mousewheel scrolling a textarea with style overflow:hidden. r=sspitzer, sr=tor.
2001-01-04 22:24:07 +00:00
rods%netscape.com
edb0c6270c
removing most all NS_DEFINE_IID and replacing them with NS_GET_IID macros
...
Bug 61274, r=buster sr=waterson
2001-01-04 20:44:42 +00:00
heikki%netscape.com
c97d0a8243
Bug 63560, XML content sink was not adding script element contents to the content model. Includes also minor optimizations and fixes 2 compiler warnings. r=harishd, a=vidur.
2001-01-04 00:30:11 +00:00
cmanske%netscape.com
7db91fe68d
Fixed selecting multiple rows, columns. Bug 64093, r=mjudge, sr=kin,sfraser
2001-01-04 00:24:39 +00:00
akkana%netscape.com
37986bc27c
56072: fix ctrl-left/right bindings on Unix. r=timeless,jag.anthonyd; a=kin
2001-01-04 00:01:34 +00:00
attinasi%netscape.com
5fbed3e0c0
Removed the bogus file-extension-as-image-type text from the title. b=47891 r=dcone sr=buster
2001-01-03 23:37:28 +00:00
attinasi%netscape.com
b2c258ed3c
Fixed leak in StyleContextCache: destructor was not cleaning up hash table entries. r=dbaron sr=buster b=63627
2001-01-02 23:13:49 +00:00
jst%netscape.com
96702bc8a2
Fixing bug 57534. document.open() is defined to not return anything in the DOM spec but for backwards compatibility it needs to return the document itself. r=blakeross@telocity.com, sr=brendan@mozilla.org
2001-01-01 20:54:38 +00:00
dbaron%fas.harvard.edu
caa9658024
Clean up easily fixed unnecessary includes and exports of implementation header files in layout. b=63766 r=jst@netscape.com sr=buster@netscape.com
2000-12-30 19:22:22 +00:00
heikki%netscape.com
03c0f143a1
Bug 45627 and bug 45552. XMLSerializer to deal better with empty elements, special characters, elements from the HTML namespace and namespaces in general, and processing instructions. Removed a lot of duplicate code in XML Extras component, and made several small optimizations with nsCOMPtr initializations. r=vidur, a=jst.
2000-12-27 23:48:10 +00:00
blakeross%telocity.com
7d3fb8a274
Fix 63721: removing extraneous code from nsHTMLButtonElement.cpp. It's Dead Code Removal week, so I'm just doing my part. r=jst sr=alecf
2000-12-27 08:41:29 +00:00
anthonyd%netscape.com
795524ba64
fix for bug#58028 - Range CompareBoundaryPoints returning incorrect values
...
r=jst,kin
a=kin
2000-12-27 00:37:01 +00:00
jst%netscape.com
2539c465b6
Removing unnecessary include files and forward declarations.
2000-12-26 01:21:25 +00:00
jst%netscape.com
6002d6944f
Removing unused CID and doing some whitespace cleanup.
2000-12-26 01:01:41 +00:00
jst%netscape.com
671815e49a
Removing dead code and unused member variables from nsHTMLDocument, r=timeless@mac.com. Oh, and wrap nsHTMLDocument::MatchLayers() in #ifdef NS_IMPLEMENT_DOCUMENT_LAYERS
2000-12-26 00:39:42 +00:00
jst%netscape.com
ccf4483775
Fixing a change I overlooked in my last big checkin that caused a crash in some cases where forms were accessed from JS. r=jag
2000-12-24 01:52:05 +00:00
jst%netscape.com
469f98b907
More mac bustage fixes...
2000-12-23 13:32:28 +00:00
jst%netscape.com
9d288d841d
One more attempt at fixing the mac redness.
2000-12-23 12:57:59 +00:00
jst%netscape.com
9b7f6623ab
Fixing nsINameSpace leak introduced in my last checkin.
2000-12-23 12:14:41 +00:00
jst%netscape.com
0def54d99d
Attempting to fix mac bustage.
2000-12-23 11:59:05 +00:00
jst%netscape.com
3c2288e0b9
Redoing the way code is shared between different element classes in mozilla, in stead of having an inner object (mInner) and forwarding function calls to the inner object the elements now inherit from what used to be the inner object. Previously nsIJSScriptObject and nsIContent (and related interfaces) were implemented on all leaf classes (~60 classes) and all the methods in those interfaces were forwarded to the inner object, now all those methods are inherited in stead. This saves us ~3600 methods in the layout library (and 160k of code on linux) and cleans the code up considerably. r=pollmann@netscape.com, harishd@netscape.com sr=vidur@netscape.com.
2000-12-23 10:56:31 +00:00
mkaply%us.ibm.com
6767d8308d
OS/2 TB breakage
...
PR_CALLBACK
2000-12-22 02:39:03 +00:00
attinasi%netscape.com
e3de75832c
Turning the Style Context FastCache back on. a=hyatt@netscape, reviewed previously by pierre@netscape.com
2000-12-21 23:34:44 +00:00
cmanske%netscape.com
f731cf305a
Reinstating table selection work for bug 57863 and fixed textfield.value bug 63376. r=kin, sr=sfraser
2000-12-20 22:13:54 +00:00
leaf%mozilla.org
c7984c2caa
backing out regression-causing changes to reopen tree
2000-12-20 18:09:53 +00:00
hyatt%netscape.com
176da11932
fix 61471, a=ben
2000-12-20 07:25:19 +00:00
cmanske%netscape.com
b6319b5e1c
Convert IDL defines from short to long so enums are PRInt32 on all platforms (fixing build bustage)
2000-12-20 03:15:16 +00:00
cmanske%netscape.com
356492b2a7
Trying to fix speedracer build bustage
2000-12-20 02:56:17 +00:00
cmanske%netscape.com
3313e50daa
Table selection work (part of b=57863): Moved param for GetTableSelectionDate from .h to .idl, requiring change from PRUint32 to PRInt16 for all users. Table Cell ranges are now added in document order (location in table) when selecting multiple cells. Refactored table selection methods and fixed leaks. r=mjudge, sr=kin
2000-12-20 01:36:41 +00:00
dbaron%fas.harvard.edu
556384e922
Convert correct usage of |nsCOMPtr<T>::operator&| to use |address_of| since the operator& will soon become private. b=59414 r=disttsc@bart.nl sr=brendan@mozilla.org
2000-12-17 16:02:58 +00:00
jst%netscape.com
49aacd78f8
Fix a refcounting screwup I caused in my last checkin. r=pavlov
2000-12-16 23:38:56 +00:00
attinasi%netscape.com
95bcfca9fc
Turned on Style Context Data Sharing. b=39618, r=pierre, sr=hyatt
2000-12-15 06:09:50 +00:00
jst%netscape.com
90ec69406d
Fixing bug 62160, accessing ins or del elements from JS didn't work and caused a crash in the JS GC later on. sr=scc@mozilla.org, r=ben@netscape.com
2000-12-15 05:48:19 +00:00
jst%netscape.com
82295066c0
Adding protection for the casae where there's no root element in a document, bug 58477. r=blakeross@telocity.com, sr=scc@mozilla.org
2000-12-14 22:37:22 +00:00
hyatt%netscape.com
e956a14459
Fix mutation events in XUL. r=hewitt, a=ben
2000-12-14 10:14:02 +00:00
hyatt%netscape.com
14719259ef
Fix for 62301. r=hewitt, sr=ben
2000-12-14 09:32:39 +00:00
jst%netscape.com
1196cb233f
Backing out my last change here, this change didn't do what it was supposed to do, not even close.
2000-12-14 06:16:39 +00:00
sfraser%netscape.com
e0b33dce98
More useful error message when an XML bindings file fails to load. r=waterson, sr=hyatt
2000-12-14 02:32:26 +00:00
jst%netscape.com
1bd04c173d
Checking in fix for annoying asserts on startup caused by a doctype token problem in the parser that was introduced yesterday, casting char * to PRUnichar * just aint a good idea (although that was only part of the problem). Fix done mostly by heikki@netscape.com, r=heikki, harishd, sr=me.
2000-12-14 02:30:12 +00:00
vidur%netscape.com
4f62c23956
Change to token and parser node interfaces in conjunction with less copying in the parser. r=harishd,heikki sr=jst
2000-12-12 21:58:13 +00:00
vidur%netscape.com
0a4eedc07d
Implementation of ReadSegments to support less copying in the parser. r=rpotts, sr=jst
2000-12-12 21:57:47 +00:00
heikki%netscape.com
7ff1e2bfe0
Bug 51218, problems with DOCTYPE handling. r=harishd, a=vidur.
2000-12-11 22:21:06 +00:00
rods%netscape.com
01c76373c3
smoketest blocker,
...
an event is cancelled when it is equal to nsEventStatus_eConsumeNoDefault
a=joki
2000-12-11 20:07:50 +00:00
rods%netscape.com
c543ccf234
removed where the input element was telling the rado/checkbox to return the opposite value
...
now it changes it value before the DOM call (script) and then if the event is cancelled
it sets the value back (which doesn't happen very often)
r=pollmann,jst sr=buster b=57137,57239,58460
2000-12-10 16:05:29 +00:00
hyatt%netscape.com
4ed7ab545c
Fixing linux build bustage
2000-12-10 09:47:05 +00:00
hyatt%netscape.com
957686ba6a
Speeding up retrieval of anonymous nodes by removing a redundant copy. Patched bug in
...
insertion point retrieval. a=ben@netscape.com
2000-12-10 09:23:43 +00:00
hyatt%netscape.com
b776af02af
Added support for fieldset and legend. Not used by default.
...
a=ben@netscape.com
2000-12-10 09:23:11 +00:00
hyatt%netscape.com
eea715dc3f
Added Pref control for XBL forms.
...
r=jst@netscape.com , a=ben@netscape.com
2000-12-10 09:20:40 +00:00
hyatt%netscape.com
c2919eaadb
Adding support for box objects to XML and HTML. Fixed focus bug with Generic Elements
...
r=jst@netscape.com , a=ben@netscape.com
2000-12-10 09:19:59 +00:00
hyatt%netscape.com
422723667a
Adding support for box objects to XML and HTML. Reduced size of XUL content nodes by
...
4 bytes. r=jst@netscape.com , a=ben@netscape.com
2000-12-10 09:18:57 +00:00
disttsc%bart.nl
b1bfdfa3d0
Remove titledbutton frame (wasn't built) and titledbutton atom, bug=57751, r=ben, a=hyatt
2000-12-09 12:36:07 +00:00
bryner%uiuc.edu
e3a92267ce
Mousewheel bugs 29244, 50339, 42313, 33733, and 57598. r=rods,pavlov. sr=hyatt.
2000-12-09 07:28:19 +00:00
dbaron%fas.harvard.edu
fa7d014c05
Convert correct usage of |nsCOMPtr<T>::operator&| to use |address_of| since the operator& will soon become private. b=59414 r=disttsc@bart.nl sr=waterson@netscape.com
2000-12-09 04:46:08 +00:00
dbaron%fas.harvard.edu
2b2160f1b0
Fix incorrect usage of nsCOMPtr where nsCOMPtr::operator& was used instead of getter_AddRefs. b=59414 r=disttsc@bart.nl sr=waterson@netscape.com
2000-12-09 04:21:51 +00:00
jst%netscape.com
03266140d5
Fixing bug 57466. XML documents need to do principal fixup on redirect. sr=vidur, r=mstolts, r=pollmann.
2000-12-09 02:04:36 +00:00
attinasi%netscape.com
d97aa7f2cb
Changes to put style data into the layout regression data output. r=karnaze, a=waterson
2000-12-07 15:31:40 +00:00
hyatt%netscape.com
d4bd87ea0d
Big XUL landing. Fixed bug with button triggering on spacebar, fixed numerous tree bugs to enable intrinsic string sizing and XBL-derived trees with custom tags. a=ben
2000-12-07 10:18:40 +00:00
hyatt%netscape.com
a809cb4755
Big XBL landing. Fixes numerous XBL bugs. a=ben
2000-12-07 10:11:21 +00:00
hyatt%netscape.com
021da9b1d3
More fun with XBL. Not used in build. a=ben
2000-12-07 09:52:13 +00:00
hyatt%netscape.com
6147067db4
XBL forms experiments. Testing the water to see what XBL can do right now. Not used as part of build. a=ben
2000-12-06 22:50:53 +00:00
blakeross%telocity.com
68cf67e019
Fix 46174: widgets don't use Appearance Manager variation color in mac classic theme. patch by lordpixel@mac.com. r=ben sr=blizzard
2000-12-05 21:49:42 +00:00
dbaron%fas.harvard.edu
7ccca40aab
Fix leak of atom and fix return value propagation from SetMedia. b=58697 r=pierre@netscape.com sr=waterson@netscape.com
2000-12-02 15:53:42 +00:00
hyatt%netscape.com
330117b36e
Making sure resource URIs are also globally cached by XBL (in addition to chrome URIs). a=ben
2000-12-02 10:34:52 +00:00
hyatt%netscape.com
f7b4d6af7e
Mac and Win XBL buttons. Not part of build.
2000-12-02 10:29:29 +00:00
hyatt%netscape.com
0b3b0dff71
XBL forms stuff. Not part of build.
2000-12-02 10:27:05 +00:00
hyatt%netscape.com
89a3b213f3
adding new XBL form widget stylesheets. a=ben@netscape.com
2000-12-01 08:47:19 +00:00
blizzard%redhat.com
414428ea2f
Fix bug #61519 crash in nsXBLPrototypeHandler::ExecuteHandler. Check for the existance of a focused window and if a QueryInterace returns null. r=pinkerton sr=hyatt
2000-11-30 23:48:09 +00:00
locka%iol.ie
2b03ecf7c9
New encoder fixup helper interface. b=57996, r=jst
2000-11-30 01:08:22 +00:00
sfraser%netscape.com
417a2a01ce
Fix crasher bug when typing in the URL bar, bug 61452. Need to null out a global when we delete it. r=pinkerton
2000-11-29 22:26:22 +00:00
pinkerton%netscape.com
4658f006a9
pulling out the dnd code (and my useless dumps) until we can differentiate between chrome and content. fixes regression.
2000-11-29 21:56:40 +00:00
mkaply%us.ibm.com
1c2becf99b
htmlbindings changes for OS/2
2000-11-29 21:45:46 +00:00
dbaron%fas.harvard.edu
8670959926
Add newline to end of file to make HP compiler happy. r=timeless
2000-11-29 15:18:32 +00:00
pinkerton%netscape.com
72d1444212
Fix win32-only bustage.
2000-11-29 06:34:14 +00:00
pinkerton%netscape.com
a3d4c053ef
Refactor some of the window key handler and add drag and drop handlers to the window root. Also move the html bindings (and platform bindings) to res, removing the chome dependency. a=hyatt.
2000-11-29 06:01:33 +00:00
pinkerton%netscape.com
bb2d3d39a7
more small build things. r=bryner
2000-11-29 05:55:02 +00:00
pinkerton%netscape.com
c6d663c0ea
forgot the adjust depth. r=bryner
2000-11-29 05:36:18 +00:00
pinkerton%netscape.com
c4703eaa79
start building xbl/builtin (a=hyatt).
2000-11-29 05:12:40 +00:00
pinkerton%netscape.com
c531ce2be5
moving bindings into res to eliminate chrome dependency.
2000-11-29 02:54:24 +00:00
pinkerton%netscape.com
83e2a61ae6
breaking apart root key handler into base class
2000-11-29 02:51:26 +00:00
mjudge%netscape.com
bb5be88f75
added in code to allow GetSelection() to work. r= mstoltz
2000-11-29 00:13:00 +00:00
hyatt%netscape.com
c594262a0d
Move menulist entirely into XBL. a=ben
2000-11-28 08:52:36 +00:00
jst%netscape.com
f6a582b216
Getting rid of some static nsIID's in favor of using the NS_GET_IID() macro. sr=rpotts, r=pollmann
2000-11-28 04:11:37 +00:00
jst%netscape.com
0b7bd0948d
Fixing bug 49597. Setting the 'checked' state on a dynamically created radio button that wasn't yet part of the document in JS was throwing an exception since our internal pres state code was generating a failure code when the input element didn't have a document. sr=vidur, r=pollmann
2000-11-28 03:41:50 +00:00
heikki%netscape.com
eee8382134
Bug 59675, fixing uninitialized variables. r=jst, a=waterson.
2000-11-27 23:23:28 +00:00
nhotta%netscape.com
04382fd18b
Changed to convert anchor name as UTF-8 instead of Latin1 if that fails then convert it as document charset, bug 58819, r=erik, sr=jst.
2000-11-27 21:43:28 +00:00
hyatt%netscape.com
d9f3df81f0
Patch for 55595. r=joki, a=brendan
2000-11-27 07:55:20 +00:00
cls%seawood.org
66a18fcbbf
Resurrect REQUIRES so that we have some sort of means to track intermodule dependencies. Bug #59454 r=blizzard@mozilla.org
2000-11-20 07:16:06 +00:00
alecf%netscape.com
68d3515b46
#45797 - fix consumers of NS_IMPL_ISUPPORTS
...
r=dveditz
2000-11-17 20:54:21 +00:00
brade%netscape.com
684ef11aeb
use inline methods rather than typecasting directly to floats to prevent rounding errors (bug #56022 ); r=jst; sr=buster
2000-11-15 10:54:41 +00:00
pinkerton%netscape.com
12a95cdd02
make the tooltip go away when the mouse moves. Also fix a problem for win32 where the tooltip auto-hiding would cause the timer to show again. r=blake/sr=sfraser. bug# 59917.
2000-11-13 18:18:38 +00:00
bryner%uiuc.edu
973bbbd400
Bug 58589 - groundwork for horizontal mousewheel scrolling. r=jkobal, sr=scc.
2000-11-13 18:16:43 +00:00
mkaply%us.ibm.com
924201a16f
OS/2 TB breakage
...
PR_CALLBACK only applies if it is a C function, not a member of a C++ class
2000-11-13 05:28:27 +00:00
pinkerton%netscape.com
d8f010026d
register tooltip listener to listen for keypresses. r=danm, a=hyatt.
2000-11-12 22:38:07 +00:00
pinkerton%netscape.com
b9280708a3
fix a slew of tooltip annoyances. pref to turn them off, they time out after 5 seconds, and they go away when you start typing. r=danm, a=hyatt. bugs 56920, 46544, 53653, 45530.
2000-11-12 22:09:13 +00:00
jst%netscape.com
c65a1304ad
Making the method NS_NewXMLEntity() match its prototype, no bug. Problem found by Sorin Banu <sbanu@softwin.ro>. r=pollmann, sr=rpotts
2000-11-11 23:54:44 +00:00
disttsc%bart.nl
87187c390c
Moving nsIContentViewer over from webshell to docshell, converting from .h to .idl. Needed for bug 46200, r=moa=adam@netscape.com, a=alecf
2000-11-09 20:30:35 +00:00
jst%netscape.com
36ed715e12
Fixing bug 48031. Adding missing nullpointer checks to fix crashes in AppendChild(), RemoveChild(), ReplaceChild(), ... in nsDocument. r=nisheeth, sr=vidur
2000-11-09 06:38:00 +00:00
alecf%netscape.com
fd2cc9c5c2
fix for #58103 - implement nsXULDocument::CreateRange()
...
sr=waterson
2000-11-09 00:32:27 +00:00
dbaron%fas.harvard.edu
64ab978d6a
Fix leak of nsDOMScriptObjectFactory by freeing in layout module destructor. r=jst@netscape.com sr=brendan@mozilla.org b=43576
2000-11-08 03:17:18 +00:00
dbaron%fas.harvard.edu
638b1b16f4
Fix leak of an nsIURI (the URL of the quirk stylesheet). Patch from inaky.gonzalez@intel.com. r=attinasi@netscape.com sr=brendan@mozilla.org b=43656
2000-11-08 03:13:53 +00:00
dbaron%fas.harvard.edu
4de499215d
Fix leak of mCurrentFocus that caused input element in URL bar to leak. r=saari@netscape.com sr=hyatt@netscape.com b=59042
2000-11-08 03:00:02 +00:00
heikki%netscape.com
3870ddca29
Bug 59389, eliminate nsIContent::IsSynthetic(). r=jst, a=vidur.
2000-11-08 00:42:42 +00:00
heikki%netscape.com
70cc953e30
Bug 51428, fix UMR in nsEventStateManager::DispatchNewEvent
2000-11-08 00:33:37 +00:00
heikki%netscape.com
de2d514804
Bug 48886, fix UMR and clean up some ugly code. r=jst, a=vidur.
2000-11-08 00:31:06 +00:00