kipp
4727732a61
Fixed a few bugs in ContentDeleted reflow; implemented a cheesy version of FrameDeletedReflow
1998-07-06 21:37:08 +00:00
rods
53fa54fe1a
activated the build of the widget test and scribble apps
1998-07-06 21:36:55 +00:00
rods
03fcf70a03
Removed RadioGroup and fixed the "Create" of the AppShell
1998-07-06 21:36:17 +00:00
kipp
8b73ffa085
new
1998-07-06 21:36:00 +00:00
rods
7d24b9373e
Implemented Get/Set Caret and Insert
1998-07-06 21:31:01 +00:00
rods
1689a05dda
Changed GetSelectedItem so it throws an exception when it is call by nsListBox
1998-07-06 21:30:08 +00:00
buster
ed14926019
added support for "effective column widths", the width of a column pretending that spanning cells have no effect.
...
this gets us some more Nav4 compatibility.
several minor fixes.
1998-07-06 21:00:11 +00:00
rods
205b26c826
Fixed cast
1998-07-06 20:27:57 +00:00
rods
2873b17c9a
Commented out the SetBKColor in the callback
1998-07-06 19:58:36 +00:00
rods
65568eb44c
Minor fix to get it compiling on Windows
1998-07-06 19:56:08 +00:00
rods
c4394e6ade
Added more tests
1998-07-06 19:34:50 +00:00
rods
74bfd9be9c
Changed the array of widget to be of type "Widget" instead of "long"
1998-07-06 19:26:06 +00:00
kmcclusk
e4b237343c
Moved *._s files into Linux specific EX_LIBS
1998-07-06 19:21:07 +00:00
rods
25a5f0a250
Added SetSelectedIndices method (no implementation)
1998-07-06 19:16:45 +00:00
rods
ba9ab98ffd
Filled in more of the methods and added additional tests
1998-07-06 18:13:38 +00:00
kmcclusk
f3827f73b3
Removed unused define and commented out code.
1998-07-06 18:06:30 +00:00
kmcclusk
b7ec67bf1a
Added missing libraries to get viewer to link under Linux
1998-07-06 17:55:38 +00:00
kipp
064f0b12bc
Changed the event loop to install a timer to make sure that the net will always get some cycles
1998-07-06 17:41:27 +00:00
terry
3b4669dbd5
Patch by Matthew Wilson <msw@gimp.org> -- more layer poisition fixes.
1998-07-06 17:09:33 +00:00
terry
7d1bcc3192
Needs to loadConfigData() so that it can get the value of $rcsdiffcommand.
1998-07-06 16:50:08 +00:00
nisheeth
444445552c
Fix for Mac build bustage.
1998-07-05 01:51:33 +00:00
nisheeth
9c70ee8fb5
Approved by Don. Checking in latest Layout Probe API implementation from
...
the 4.06 branch into the mozilla tip. This API is not being called from
anywhere and hence cannot affect stability.
1998-07-04 23:25:24 +00:00
shaver
e907c6a086
tentative and likely useless script verifier for XDR (-DJS_XDR_SCRIPT_VERIFIER)
1998-07-04 19:45:46 +00:00
guha
e84c153166
Fix the major RDF bugs on the tip.
1998-07-04 19:13:55 +00:00
kipp
9fd4a227e9
Don't build shared library
1998-07-03 23:54:25 +00:00
kipp
30f6bf49ba
Removed some compiler warnings
1998-07-03 23:16:43 +00:00
kipp
f97bf0ca47
Eliminate some compiler warnings
1998-07-03 23:14:21 +00:00
kipp
17933d64a7
Don't forget to build nsHTMLTags.o
1998-07-03 23:13:37 +00:00
kipp
fc81f712c0
Don't build shared libraries
1998-07-03 23:12:11 +00:00
kipp
cd06f71063
Updated makefile to be single pass so that clobber, etc. work correctly now
1998-07-03 23:09:42 +00:00
kipp
21c9296332
Added rules to export and generate nsHTMLTags.h, nsHTMLTags.cpp
1998-07-03 20:33:10 +00:00
kipp
704e070c50
Removed obsolete files
1998-07-03 19:09:41 +00:00
fur
e30c123261
These files were moved to js/ref/liveconnect/macbuild/JavaSession.
1998-07-03 19:00:59 +00:00
kipp
2056d51a8c
Added some style for html4 tags and some nav tags
1998-07-03 18:41:44 +00:00
kipp
3b261954f3
Removed some cruft
1998-07-03 18:40:45 +00:00
kipp
743d53f95a
updated
1998-07-03 18:40:25 +00:00
kipp
4fc5c374b2
Fixed tag enum table to start at 1
1998-07-03 18:40:12 +00:00
kipp
0f579e2006
Removed a test
1998-07-03 17:51:45 +00:00
kipp
f992c86548
Build nsHTMLParts too
1998-07-03 17:50:53 +00:00
kipp
656913c53f
Use NS_CreateHTMLElement to implement dom create-element method
1998-07-03 17:50:25 +00:00
kipp
69a30a250e
new
1998-07-03 17:50:00 +00:00
kipp
e75706a7db
Added NS_CreateHTMLElement
1998-07-03 17:49:49 +00:00
kipp
8de1e92335
Reworked ContentInserted handling
1998-07-03 17:46:44 +00:00
kipp
ffe1d07336
new
1998-07-03 17:19:58 +00:00
kipp
89072e57d5
Use new generated tags table/search routines
1998-07-03 17:19:26 +00:00
fur
47c9f09d1c
+ Fixed heap corruption caused by free'ing of an uninitialized pointer.
...
+ Changed the way JS wrapper functions for Java instance methods are constructed.
Previously, these were computed the first time that an instance method was
accessed for a particular JavaObject and cached in the native, private portion
of that JavaObject. However, the required call to JS_AddRoot() causes an root
to appear as a link in a cyclical graph, leading to uncollectible objects, i.e.
the JavaObject has a root pointer to the function object and the function has
a parent that points back to the JavaObject. Now, we compute the functions
at the time a class is reflected and use JS_CloneFunctionObject() each time
a JS wrapper function is needed, which is slower, but avoids this GC problem.
1998-07-03 15:50:16 +00:00
mcafee
219162ce48
Full Circle assembly files hangs the compiler w/o this flag.
1998-07-03 13:15:40 +00:00
rpotts
8c8d2118f3
Added error checking to the document creation. IF a document cannot be found, the network load will fail and the old document will not be deleted...
1998-07-03 06:16:02 +00:00
rpotts
163d764007
Cause the netlib load to fail if OnStartBinding(...) returns an error.
1998-07-03 06:15:06 +00:00
scullin
c317eab246
Attempt to fix mac build.
1998-07-03 05:09:43 +00:00