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

10715 Коммитов

Автор SHA1 Сообщение Дата
joki%netscape.com d274f9edc9 Fix bug 40071 "accesskey doesn't block menus" by propagating the cancelled event state from PreHandleEvent into HandleDOMEvent. r:jst 2000-09-15 06:11:15 +00:00
waterson%netscape.com 203d76afc3 Can't keep strong ref to pres shell. r=hyatt 2000-09-15 05:29:33 +00:00
rayw%netscape.com 3cd14f5878 Bug fix for 52648 -- remaining stash of progids which I missed on
the mega-change yesterday.  This will fix a few more issues.

r=warren
2000-09-14 23:20:49 +00:00
evaughan%netscape.com bb9a09703e Fix for bug #52124 2000-09-14 23:02:26 +00:00
pinkerton%netscape.com b83cf2e3cd use control key for access key on mac (that's what IE5 does). r=saari/joki. bug# 40071. 2000-09-14 22:58:47 +00:00
pinkerton%netscape.com 66ed76f9db Check if preventDefault is set before handling key events. Fix for conflicts
between menus and accesskeys. r=joki/saari. bug#40071
2000-09-14 22:55:19 +00:00
kin%netscape.com 9cbca6caf4 Fix for bug #46396: select after input confuses session history
- Remove temporary call to SetInitialValue() in CreateAnonymousContent().
      - Move all calls to SetInitialValue() out from under the 'if' statement
        they were under. This will make sure that it gets called at least
        once since there are times when GetPrefSize() and Reflow() are not
        called during the initial reflow.

r=mjudge@netscape.com
2000-09-14 22:39:19 +00:00
morse%netscape.com a0648104b0 bug 51338, cookie nag box not modal on meta-tag cookies, r=harishd 2000-09-14 18:59:47 +00:00
dbaron%fas.harvard.edu 19bd466446 Change the names of behavior and opacity DOM properties to MozBinding and MozOpacity, and make them work again with new CSS property names. r=jst, except for case change (Moz not moz) agreed on mozilla-style b=3935 2000-09-14 14:18:24 +00:00
kin%netscape.com 1e40ca12c2 Mac build bustage fix for nsISelectionListener.idl typo. 2000-09-14 14:08:27 +00:00
mjudge%netscape.com bcaf623b8c fixing mac forgot this one 2000-09-14 13:38:29 +00:00
mjudge%netscape.com 1ea0763f86 fixing sun/sparc i guess it didnt like the inline if/else statement. separating out. 2000-09-14 13:23:31 +00:00
mjudge%netscape.com d40bbf560b thanks dbaron. didnt know about this file 2000-09-14 13:14:20 +00:00
mjudge%netscape.com 1c0ca9249a left out selectionprivate. sorry bout that 2000-09-14 12:27:59 +00:00
mjudge%netscape.com 4bc19a6726 removing old domselection moving it to layout\base\public as xpidl 2000-09-14 11:51:06 +00:00
mjudge%netscape.com e2be918716 small but pervasive change to make nsIDOMSelection an xpidl interface. also broke it into 2 interfaces, nsISelection and nsISelectionPrivate. moved nsIDOMSelectionListener also to xpidl. these new idl files live in layout/base/public. r=sfraser, r=anthonyd bug 48575 2000-09-14 11:45:01 +00:00
mjudge%netscape.com 77fce2df49 hoarkage fix. need a.get on pointer compare on unix for comptrs 2000-09-14 09:42:18 +00:00
pinkerton%netscape.com 3a03377767 before starting a selection, make sure we aren't in a link because we don't want to usurp the DnD code. r=mjudge, bug# 52541. 2000-09-14 08:47:46 +00:00
edburns%acm.org eee39a1304 a=brendan, ekrock
r=av, sean@beatnik.com
bug=50547

This change allows the plugin to have a greater degree of control over
the plugin lifecycle.  This change makes it possible for the plugin to
tell mozilla:

1. Whether or not they want to allow the browser to cache their
instance.  Default is yes, do allow the browser to cache their instance.

2. If they answer no to 1, that is, no the plugin does not want the
browser to cache their instance, do you want the shutdown calls to be:

a.

          inst->SetWindow(nsnull);
          inst->Stop();
          inst->Destroy();


b.

          inst->Stop();
          inst->Destroy();
          inst->SetWindow(nsnull);

a. is the default.

Please visit the bug to see the patches:

http://bugzilla.mozilla.org/show_bug.cgi?id=50547

Detail:

This fix was requested by Stanley Ho of the Sun Java Plugin Team.  A
conference call between Eric Krock, Andrei Volkov, Sun, Adobe and other
plugin vendors was used to agree on the above solution.

M modules/plugin/public/nsplugindefs.h
M modules/plugin/nglsrc/nsPluginHostImpl.cpp
M modules/plugin/nglsrc/nsPluginViewer.cpp
M layout/html/base/src/nsObjectFrame.cpp
2000-09-14 08:22:31 +00:00
rickg%netscape.com d46d2d3c38 fixed nsbeta3+ crash (bug# unavailable 'cause bugzilla is down) and removed FMM. r=attinasi 2000-09-14 07:28:44 +00:00
karnaze%netscape.com b5a6f2a36c bug 30418, 47252 - order row groups before performing most operations. r=attinasi. 2000-09-14 06:49:47 +00:00
nisheeth%netscape.com 4d64cceee9 r=jst. Fix for nsbeta3+ bug 49579: Leak of a char * fixed in StartDocumentLoad(). 2000-09-14 06:43:08 +00:00
buster%netscape.com 829ab5c58e just cleaning up a warning, found during fix for bug 52307 2000-09-14 05:50:56 +00:00
buster%netscape.com ea39a92693 bug 52307
r=karnaze and r=kin
under the hood, we've opened up leaf elements to generated content.  GeneratedContentIterators assumed the real element was a container, not a leaf.  The fix was just to add a null check on a request for the element's child.
2000-09-14 05:40:48 +00:00
mjudge%netscape.com d74f430c75 private interface for selection 2000-09-14 05:24:18 +00:00
mjudge%netscape.com 62b3714065 not in build yet. adding for beta3 bug on api change 2000-09-14 05:22:37 +00:00
jst%netscape.com 347b9460b5 Fixing nsbeta3+ bug 52572. Updating the DOM intefaces in mozilla to match the current DOM Level 2 PR. r=kandrot@netscape.com 2000-09-14 05:19:00 +00:00
jst%netscape.com 96951c3f90 Fixing nsbeta3+ bug 51034. element.getElementsByTagName() was throwing a NS_NOINTERFACE exception to the wrong IID passed to QI. r=kandrot&pollmann 2000-09-14 04:53:03 +00:00
pollmann%netscape.com 0b9eda0dd2 Bug 3326: Implement IsIndex Frame; r=kmcclusk 2000-09-14 04:46:58 +00:00
pollmann%netscape.com 929928c472 Bug 3326: Implement IsIndex frame; r=kmcclusk 2000-09-14 04:43:31 +00:00
pollmann%netscape.com 61d66125b5 Bug 3326: Implementing IsIndex frame. r=kmcclusk 2000-09-14 04:41:13 +00:00
pollmann%netscape.com 11230290f1 added files: mozilla/layout/html/forms/src/nsIsIndexFrame.cpp 2000-09-14 04:39:44 +00:00
rayw%netscape.com 0257791053 Bug 37275, Changing value of all progids, and changing everywhere a progid
is mentioned to mention a contractid, including in identifiers.

r=warren
2000-09-13 23:57:52 +00:00
jdunn%netscape.com e6f144c78e Fix warning: return value is required from functions
r= brendan@mozilla.org scc@mozilla.org
#= 52254
2000-09-13 14:11:51 +00:00
jdunn%netscape.com 7312330f97 Specify that the base class is indeed 'public' since some compilers (AIX)
assumes 'private'.  I ok'd each of these with the appropriate module
owners (see bug)

r= scc@mozilla.org & brendan@mozilla.org + everyone listed in bug
#= 52254
2000-09-13 13:50:30 +00:00
scc%mozilla.org 38e1cdde57 if you want a pointer to characters, you're going to have to |.get()| it 2000-09-13 08:21:04 +00:00
sfraser%netscape.com 4af1765061 Part of the fix for 20743, add flag to tell us if a drawing surface is short-lived, so we can allocate in temp mem (on Mac). r=pavlov 2000-09-13 07:02:30 +00:00
scc%mozilla.org cfbee28623 if you want a pointer to the characters, your going to have to |.get()| it 2000-09-13 04:47:36 +00:00
scc%mozilla.org f75af5e15f if you want a pointer to the characters, you're going to have to |.get()| it 2000-09-13 02:48:08 +00:00
pinkerton%netscape.com 450bbd5307 when we see that the mouseDown event was cancelled, stop tracking drags. This allows mousedown/move/up events to be processed by webpages w/out us interfering. r=joki, bug 43258. 2000-09-13 01:45:23 +00:00
anthonyd%netscape.com 408d1057ca bug fix for mjudges bug #45387
r=anthonyd
2000-09-13 00:05:29 +00:00
kandrot%netscape.com 861c2cc6cb Fix for bug #51944. This change removes the stored selector text, and adds a method to the selector to generate the text, if needed.
r=vidur
2000-09-13 00:05:04 +00:00
attinasi%netscape.com b96825ada0 Implemented GetParentContextProvider for the table frames to allow them to specify a frame other than their parent as the provider of their parent style context. b=45210 r=karnaze 2000-09-12 22:48:35 +00:00
attinasi%netscape.com 1fd5ba1fd2 Added default implementation for frames to allow a frame to specify which frame provides its parent style context. Also reworked ReResolveStyleContext and VerifyStyleTree to allow the style context tree to diverge from the frame tree. b=45210 r=karnaze 2000-09-12 22:47:09 +00:00
attinasi%netscape.com 33c7174943 Added a new method to allow a frame to specify the frame that provides its parent style context. b=45210 r=karnaze 2000-09-12 22:45:33 +00:00
kin%netscape.com 798fd79ed0 49339 "Saving File" dialog doesn't initially show complete filename
Replaced call to ScrollSelectionIntoView() in SetTextControlFrameState()
with a call to nsIScrollableView::ScrollTo() that resets the scroll position
of the text widget to (0,0) when the value is replaced.
r=sfraser@netscape.com
2000-09-12 22:14:06 +00:00
harishd%netscape.com 6aab716011 Removed the hack,in the sink, to limit nesting depth. This now
happens in the parser.

r=rickg/jst
2000-09-12 21:18:50 +00:00
nisheeth%netscape.com ce4f6ba3c2 Followup to fix for nsbeta3+ bug 10292. Return default values from GetMappedAttributeImpact and GetContentStyleRules(). 2000-09-12 21:02:02 +00:00
heikki%netscape.com 5a54ae35f1 Forgot to check that we fire the select event with Select All. Also fix event.target. Part of bug 46085. r=mjudge. 2000-09-12 20:54:41 +00:00
evaughan%netscape.com c2a4af64f0 Fix for bug #51780
-r pinkerton
2000-09-12 20:19:11 +00:00
attinasi%netscape.com e6ed1d17ba Part of fix for bug 45210: style contexts had the wrong parent because the frames were reparented but their style contexts were not. r=rods@netscape.com 2000-09-12 19:41:27 +00:00
karnaze%netscape.com 0e35d8cac9 new regression test, not affecting the build. 2000-09-12 14:34:42 +00:00
karnaze%netscape.com b182356e04 bug 51727 - rebalance table cols when fixed cell gets smaller and was the contributor of the previous col width. r=rods. 2000-09-12 14:24:35 +00:00
pierre%netscape.com e275549edd 50804: nicer look for focus outlines. Fix sent by henris@clinet.fi, r=pierre. 2000-09-12 09:54:31 +00:00
nisheeth%netscape.com b06610d152 Checkin to use a pref instead of a compile time switch for turning on async reflow during doc load. Related to previous checkin to fix nsbeta3+ bug 39368. 2000-09-12 08:59:01 +00:00
mjudge%netscape.com ae0b365558 36130 beta3 bug. 1 line change to scroll selection
into view when value is set on text field/area.
2000-09-12 06:35:54 +00:00
akkana%netscape.com 99628b2337 52035, 52171: Fix some recent regressions in key bindings. r=hyatt,jfrancis 2000-09-12 02:01:12 +00:00
jst%netscape.com e23849d230 Fixing nsbeta3+ bug 51562. Don't leak nsXMLProcessingInstructions... r=beard&dbaron 2000-09-12 01:51:02 +00:00
nisheeth%netscape.com 1a24a39b49 r=rpotts. Fix for nsbeta3+ bug 39368. 2000-09-12 00:35:11 +00:00
peterlubczynski%netscape.com 68cb6aabee fix for bug 50432. PRPackedBools compressed to one flag. mAutoBuffer size reduced to 128. r=buster 2000-09-12 00:00:58 +00:00
peterlubczynski%netscape.com 144fd4e5e9 Fix for bug 46368. Fixed cellMet.mMaximumWidth for incremental reflow. r=karnaze 2000-09-11 22:58:59 +00:00
dougt%netscape.com 09a4bb02bb Fixing error codes. r=waterson. 2000-09-11 22:56:15 +00:00
akkana%netscape.com f9508b7d47 36082: don't load contents of script tag if script evaluation is off. r=brendan 2000-09-11 22:27:53 +00:00
jst%netscape.com 65092804c2 Adding new file, not part of the build. 2000-09-11 22:10:08 +00:00
buster%netscape.com 05f2509eec checking in fix for unix compiler, stupid nsCOMPtr x-platform incompatibility. 2000-09-11 21:43:46 +00:00
buster%netscape.com 86e0e4dfef forgot to check this in as part of my last checkin.
bug 18754
r=karnaze
2000-09-11 21:25:43 +00:00
rods%netscape.com 3bb5999f5b fixed twips rounding error in calculation
b=52135 r=buster
2000-09-11 21:22:43 +00:00
rods%netscape.com 8405e126aa stripping CR/LF in href attrs on mouse over or mouse click
b=52119 r=harishd
2000-09-11 21:21:40 +00:00
buster%netscape.com 11241fb485 bug 14280
nsTextTransformer.cpp.
  I moved where we translate the nbsp to a (ascii 32 space character) until after the i18n routines are called, so they can properly account
  for the space as non-breaking and therefore part of the first word in the block.

bug  39901 and 38396
  nsHTMLImageLoader.*, nsImageFrame.cpp
  I backed out the bad fix for 38396, and put in a new fix where I store a little state in the image loader flags for cases where the image
  gets an unconstrained reflow and has %-based width.  This does not handle %-based min-width or max-width, that would be a separate
  bug that I'll file shortly.  But this fixes the vast majority of real cases out there.

bug  18754
  nsHRFrame.cpp, quirks.css, nsCSSFrameConstructor.cpp, last part of nsLineLayout.cpp
  in quirks mode, I changed HR from a block element to a replaced inline element that acts like a block, using generated content to get
  newlines before and after the HR.  This isn't ideal, but it gets us backwards compatibility, and ian and dbaron have blessed the approach.

bug  50257
  nsLineLayout.cpp
  Did a couple of things in here:
       * The actual fix is controlled by FIX_BUG_50257 #define symbol.  This basically says that an break (BR) will always fit on a line.
         A more general solution would probably be to round up to the nearest pixel, and if the thing is less than a pixel make it fit on a
         line.  This is a wimpier, safer solution.
       * I noticed that the way we got the compatibility mode was way out of date, very wasteful.  So I fixed that.
       * I noticed that there were a bunch of redundant SetFlag calls.  Since the flag variable is initialized to 0, setting a flag to 0 on a newly
         created object is a waste.

  nsBlockFrame.cpp  --  just added a comment to some odd looking code, to make sure no one comes along later and breaks it
2000-09-11 21:15:02 +00:00
jst%netscape.com d50223fd65 Fixing the content serializers to compile on Windows. Not part of the build. 2000-09-11 20:55:46 +00:00
buster%netscape.com 4aa5410139 added test case 28811 2000-09-11 20:49:30 +00:00
buster%netscape.com 37e900a62c bug 28811
r=karnaze
The problem was we were over-eager in optimizing away a resize reflow for lines
that contain %-aware children.  We were only looking at the first-level children
of a line, not all the children.  Now, we compute a bit for each inline container
based on it's children, true if any of them are %-aware wrt any width measurement.
We propogate this bit upwards to a bit on the line itself, and check this bit during reflow.
2000-09-11 20:46:44 +00:00
dougt%netscape.com a7d77f33f2 Fixes 51759. If we ship without a plugin manager as we can do for embedding, we crash loading most pages with plugins. This change basically returns an error from Reflow if we cant get the plugin manager component. r=valeski 2000-09-11 20:27:25 +00:00
vidur%netscape.com 4ddd46c060 First cut at the plain text serializer. The bulk of this code froms the old nsHTMLToTXTSinkStream. This is not part of the build. 2000-09-11 05:10:32 +00:00
karnaze%netscape.com 68540e7f02 bug 19961 (partial) - in standard mode, give last remaining space to auto cols if there are any. 2000-09-11 04:14:02 +00:00
pierre%netscape.com 84f381ec78 Fix blocker bug #52039 (crash when resolving pseudo-style for anonymous content). 2000-09-11 03:58:22 +00:00
karnaze%netscape.com 49b20be1b3 new regression test, not affecting the build. 2000-09-11 03:14:09 +00:00
karnaze%netscape.com 28c49d95be bug 42643 - invalidate the cell rect when a style change occurs. r=muster. 2000-09-11 02:47:02 +00:00
vidur%netscape.com 05e1b4304d Ongoing work on content serializers. This is not part of the build. 2000-09-11 00:57:59 +00:00
karnaze%netscape.com 96a6b9b902 new regression test 2000-09-11 00:02:50 +00:00
karnaze%netscape.com 08e46efc4c bug 39209 - don't use auto margins for max element size and maximum widths (when requested
during an incremntal reflow).
2000-09-11 00:02:04 +00:00
jst%netscape.com 90cc9d88a4 Checking in a infinite loop fix done by Vidur, not part of the build. 2000-09-10 23:24:10 +00:00
vidur%netscape.com 43d4d9e1bc Better factoring of code. This is not part of the build. 2000-09-10 22:22:58 +00:00
jst%netscape.com 50937f5eae Getting the serializers up to par. This is not part of the build 2000-09-10 19:36:22 +00:00
bryner%uiuc.edu 22eea35134 Bug 51952 - make NS_BOX_ASSERTION get compiled away in release builds. r=syd. 2000-09-10 19:14:24 +00:00
karnaze%netscape.com caa8c1e5a2 new regression tests, not affecting the build. 2000-09-10 16:09:52 +00:00
vidur%netscape.com 580c3f4c4b Added missing HTML tags. r=jst 2000-09-10 07:04:30 +00:00
vidur%netscape.com 8a929ef767 Added _moz_dirty. r=jst 2000-09-10 07:04:07 +00:00
vidur%netscape.com 4a4e16e81f Backing out inadvertant checkin of makefiles. 2000-09-10 06:47:21 +00:00
vidur%netscape.com 6a4f351b72 Pretty printing in HTML. Much code lifted from nsHTMLContentSinkStream. This is not part of the build. 2000-09-10 06:44:06 +00:00
bryner%uiuc.edu f7a6f320c1 Fixing bug 51096 - crash after changing mousewheel prefs twice. Also remove some assertions and fix a longstanding inconsistency/bug with mousewheel text zoom and history navigation. r=ben. 2000-09-10 05:35:36 +00:00
vidur%netscape.com 198f095420 New HTML and XML serializers. This is not part of the build 2000-09-10 02:17:54 +00:00
jst%netscape.com ce95288e37 Adding character offsets to various methods. Not part of the build. 2000-09-10 00:09:14 +00:00
jst%netscape.com c552790c44 Whitespace changes, not part of the build. 2000-09-09 23:53:39 +00:00
jst%netscape.com 5234fdf91a Change interface to allow the implementation to be more efficient. Not part of the build. 2000-09-09 23:52:59 +00:00
rods%netscape.com fd9585e532 adding rules for show text in a disabled state in the button element
b=41252 r=attinasi
2000-09-09 22:21:15 +00:00
rods%netscape.com e50b4c7bdd reverting back to using macro for impl of set/get of disabled attr
b=41252 r=attinasi
2000-09-09 22:18:53 +00:00
rods%netscape.com 01814104cb removing bloat - removed unneeded boolean and an nsIHTMLContent pointer
b=51886 r=kmcclusk
2000-09-09 22:15:57 +00:00
rods%netscape.com ecfca9724d wasn't setting status to NS_FRAME_COMPLETE
b=49010 r=buster
2000-09-09 22:13:12 +00:00
vidur%netscape.com 5aa91138cd Removed unnecessary attribute serializer. This is not part of the build yet. 2000-09-09 22:03:58 +00:00
jst%netscape.com 78fa3435fb New file, not part of the build yet. 2000-09-09 21:47:23 +00:00
jst%netscape.com a29c8269e1 Removing static IID's (NS_DEFINE_IID()) and replace the static IID's with NS_GET_IID(), this cleans things up and simplifies my fix for nsbeta3+ bug 7515. r=pollmann@netscape.com 2000-09-09 05:46:14 +00:00
karnaze%netscape.com e7cf1bf7e1 bug 14929 - Reallocate colspan adjusted col widths when there is a percent col being spanned. 2000-09-09 01:46:44 +00:00
pollmann%netscape.com a5c145257d Bug 51856: Allow selection of just part of a text input or textarea to increase the karma around people who make typos. r=jst@netscape.com 2000-09-09 01:22:01 +00:00
sfraser%netscape.com 6b042422d7 Final part of fix for 13718 -- implement call through nsHTMLImageLoader to get natural dimensions. r=pnunn. 2000-09-08 23:36:29 +00:00
evaughan%netscape.com c0b53df515 Fix for bug# 51163
-r hyatt
2000-09-08 23:15:55 +00:00
pnunn%netscape.com 7a62c0d377 bug:13718: natural img dimens. pnunn, r:sfraser 2000-09-08 22:52:05 +00:00
pnunn%netscape.com e0a81cdaee bug#13718: natural img dimens. pnunn, r:sfraser 2000-09-08 22:47:46 +00:00
pnunn%netscape.com 8ebb9efe55 bug#13718: for editor folk. pnunn, r:sfraser. 2000-09-08 22:46:24 +00:00
valeski%netscape.com a0ab5edcee 50188. ifdef debug'ing stderr output so we don't spew it in release builds. 2000-09-08 22:43:58 +00:00
kin%netscape.com d77cac4764 Added call temporary call to SetInitialValue() in CreateAnonymousContent() to fix
the problem where we can't retrieve the password value from the password
dialog. Breaks logging into IMAP.
r=blizzard@mozilla.org a=leaf@mozilla.org
2000-09-08 14:55:49 +00:00
hyatt%netscape.com cf54e6b085 Tweak loadBindings call, provide hint to optimize possible style re-resolve in XBL, fix spot dbaron forgot. All 3 are r=ben 2000-09-08 10:01:18 +00:00
hyatt%netscape.com 9948b2ece0 Implement bindingDetached. r=ben 2000-09-08 06:57:03 +00:00
jst%netscape.com 72b52d0663 Fixing nsbeta3+ bug 48763. <frame src=' '> caused an infinite loop if the base URL for the frame happens to be the URL for the containing frameset. r=pollmann@netscape.com&nisheeth@netscape.com 2000-09-08 06:56:15 +00:00
hyatt%netscape.com 033a82d1c8 Making splitters support persistence. 2000-09-08 06:55:10 +00:00
pollmann%netscape.com 27c144a3b2 Bug 51124: Tabbing into text control now again scrolls it into view if offscreen, also adding additional bulletproofing per code review; r=jst@netscape.com 2000-09-08 05:53:28 +00:00
pollmann%netscape.com 55a8fc8526 Bug 49921: Fix leak of a CNavDTD (leak and fix found thanks to beard@netscape.com) r=jst@netscape.com 2000-09-08 04:52:57 +00:00
sfraser%netscape.com 76a1ca49fb Fix the tree bustage. r=jst 2000-09-08 02:06:56 +00:00
dbaron%fas.harvard.edu c2cbfd2d6d Clean up reporting of CSS parser errors: Use |nsAReadableString|s and an additional macro to allow all the error reporting to be done by macros. Also clean up a few comments. Not part of the default build (you must define CSS_REPORT_PARSE_ERRORS).
Make namespace prefixes case insensitive within CSS by normalizing to lower-case.  b=35813

r=attinasi
2000-09-08 02:05:09 +00:00
pollmann%netscape.com 4262a79a1f Bug 13652: select method should fire onselect handlers, blur should blur, r=jst@netscape.com 2000-09-08 01:46:00 +00:00
mscott%netscape.com 81b816da2e Bug #43556 --> remove obsolete reference to old class id for the mime service. use the new one.
r=valeski
2000-09-08 00:24:13 +00:00
karnaze%netscape.com 448dcc252f new regression tests, not affecting the build. 2000-09-07 22:05:12 +00:00
heikki%netscape.com 50ed716f64 Got delayed with changed files, here is the second patch... Fixed bug 22710, load and error events were not firing for images. I also changed the select event firing to use nsEvent instead of nsGUIEvent. r=joki. 2000-09-07 21:03:26 +00:00
karnaze%netscape.com 3f12f0e88a bug 33137 - don't use the min width of a cell which is larger than the fixed width of the cell as the basis of the fixed width contributor. r=attinasi. 2000-09-07 20:55:03 +00:00
sfraser%netscape.com 323042d90a Fix 51747 -- caret not drawing at the end of a line. Fix offset of clip. r=kin 2000-09-07 20:21:22 +00:00
kin%netscape.com d48eb6681d Fix for bug #46396: select after input confuses session history
Moved code that set initial value of text control via the editor from
CreateAnonymousContent() to a new method called SetInitialValue().
SetInitialValue() is now called during the frame's first reflow.
Added mUseEditor to indicate when it is safe to use the editor
to get and set values.
r=mjudge@netscape.com
2000-09-07 19:11:23 +00:00
akkana%netscape.com 3c2341c61c 50821: don't force a bogus 3.2 doctype, and eliminate OutputNoDoctype flag. r=cmanske 2000-09-07 18:40:14 +00:00
hyatt%netscape.com e28866a443 Fix for 43326. r=ben 2000-09-07 10:26:51 +00:00
hyatt%netscape.com 1a10100ad7 Taking more drastic measures with tree reflow stuff to try to fix some of the problems. r=ben 2000-09-07 09:27:25 +00:00
hyatt%netscape.com 3986d0da89 Weird!? 2000-09-07 09:20:56 +00:00
hyatt%netscape.com 9d8e03414c C++ fixes for 51263, r=joki 2000-09-07 08:18:11 +00:00
morse%netscape.com f1dd1c89b4 bug 51338, cookie nag box not modal, r=mstoltz 2000-09-07 07:00:36 +00:00
sfraser%netscape.com 5543105886 Fix bugs 45881 and 46850 -- general caret cruft. Ensure that caret is clipped to the scrolling view, and fix things so that the caret is properly hidden on scrolling. r=beard 2000-09-07 05:26:25 +00:00
sfraser%netscape.com f23b291227 Fix bug 49620 -- make click-drag select work in comboboxes again. r=rods 2000-09-07 04:39:02 +00:00
hyatt%netscape.com cccbddadec Patch to enable event.originalTarget on input fields. r=joki 2000-09-07 02:47:52 +00:00
hyatt%netscape.com 927938cc43 Adding originalTarget to Event object. r=joki 2000-09-07 01:07:29 +00:00
ftang%netscape.com fe633c6d96 fix bug 50654. r=nhotta take care " in the charset 2000-09-06 20:41:12 +00:00
disttsc%bart.nl 3c25610d65 Make nsXULElement inherit directly from nsXMLElement and remove dead internal code ((Get|Set)NameSpacePrefix from nsIXMLContent.h, nsIXULContent.h, nsXMLElement.h, nsGenericXMLElement.(h|cpp) and nsXULElement.(h|cpp). Hints & tips by jst (thanks!), r=jst, a=brendan. 2000-09-06 20:39:29 +00:00
rods%netscape.com b63d9a4a60 changed fonts to use CSS3 fonts so they can be overridden
Bug 44656 r=kmcclusk
2000-09-06 14:18:02 +00:00
rods%netscape.com d21753a7fc For NavQuirks we need to set the appropriate font for buttons/selects or for text and textarea
If these fonts are set in the html.css or quirk.css they cannot be overriden
We now use the CSS3 font names and for NavQuirks we adjust the fonts to match Nav 4.x
The change is to give field fonts monospace instead of sans-serif
Bug 44656 r=dcone
2000-09-06 14:02:44 +00:00
rpotts%netscape.com dd1059184e Moved the firing of the OnLoad event from WebShell into DocumentViewer... 2000-09-06 09:11:38 +00:00
pollmann%netscape.com 2e21d4e7a4 Bug 3326: IsIndex implementation (not part of build) 2000-09-06 07:37:49 +00:00
jst%netscape.com 4e563c4a15 Fixing a cloneNode() regression in the HTML code, doing a deep clone on a element that didn't have a style attribute was failing to clone it's chil nodes. r=pollmann@netscape.com 2000-09-06 05:03:34 +00:00
dbaron%fas.harvard.edu e0e16fb826 Fix misleading indentation. r=attinasi 2000-09-06 02:34:35 +00:00
dbaron%fas.harvard.edu c9392da530 Add code to allow the CSS parser to report errors. This code is not enabled by default in any builds, but it could be useful for chrome authors to catch CSS errors. We may want to turn it on in debug builds at some point, but it needs some work first. r=attinasi 2000-09-06 02:27:46 +00:00
dbaron%fas.harvard.edu cfceba7dca Change uses of CSS properties not part of the CSS2 spec to use -moz- prefix. b=3935
Fix some CSS errors found with CSS parser error reporting, with Ben's approval.
2000-09-06 02:17:26 +00:00
dbaron%fas.harvard.edu 8c105459ae Change the names of CSS properties that are not part of the CSS2 specification by adding a -moz- prefix. Change the names of those that are used internally to use -x-, just for documentation. b=3935 r=attinasi 2000-09-06 02:15:18 +00:00
sean%beatnik.com 43d1da3111 fix for bug 47840. When resolving the absolute url for plugin content, use the document's url as the base. r=av a=brendan 2000-09-05 23:40:07 +00:00
hyatt%netscape.com 18e758c3ca fix for 51410 - xbl syntax change, r=danm 2000-09-05 22:52:57 +00:00
buster%netscape.com 9de00560cd bug 40596 (input type=text form controls with width:auto are not rendering correctly in table cells)
r=rods
2000-09-05 21:22:55 +00:00
ftang%netscape.com fcedb74d37 fix bug 50849. thanks kin@netscape.com for the patch. r=ftang 2000-09-05 21:19:23 +00:00
edburns%acm.org 8ee33dddde This was tested on win32, and is known to build on win32 and solaris.
Right now, nsIPluginManager::PostURL() has parameters for
postHeadersLength and postHeaders.  However, nothing is being done with
these parameters.  This bug fix utilizes these params for their intended
purpose: to allow the plugin the ability to add HTTP headers to a POST
data stream.

Important assumptions made by this fix:

* postHeadersLength is the correct length for postHeaders.

* postHeaders is a buffer of headers in the form

  "HeaderName: HeaderValue\r\n"

  each header, including the last, MUST be followed by "\r\n".

To affect this fix I had to modify the following files:

M docshell/base/nsDocShell.cpp
M docshell/base/nsDocShell.h
M docshell/base/nsWebShell.cpp
M modules/plugin/nglsrc/nsPluginViewer.cpp
M docshell/base/nsWebShell.h
M layout/html/base/src/nsObjectFrame.cpp
M modules/plugin/nglsrc/nsIPluginInstanceOwner.h
M modules/plugin/nglsrc/nsPluginHostImpl.cpp
M modules/plugin/nglsrc/nsPluginInstancePeer.cpp
M webshell/public/nsILinkHandler.h

Basically, it involved clearing a path so the headers arguments can make
it down to nsIPluginInstanceOwner::GetURL()'s implementation in
nsObjectFrame.cpp, where an nsIInputStream is made of the headers.
2000-09-05 19:03:56 +00:00
hyatt%netscape.com 584b0548ca Fix arrow keys in input fields. r=danm 2000-09-05 18:57:53 +00:00
karnaze%netscape.com 813932d9ca fix regression tests to work around latest bugs. Does not affect the build. 2000-09-05 14:58:59 +00:00
karnaze%netscape.com 8da8501c34 bug 45350 - correctly consider rowspan height in table row incremental reflow 2000-09-05 14:57:34 +00:00
rods%netscape.com 4aa51e763f Changed resizing code to use ave char width for calculating the width of a text field in strict/standard mode
I had to put in an ifdef _WIN32 because no other platform implements the call in nsIFontMetrics
I will have to address this ifdef in the next release (Bug 50998), which means I will probably implement
GetAveCharWidth for all platforms that don't have a native call
Bug 44656  r=kmcclusk
2000-09-05 13:43:13 +00:00
rods%netscape.com 2ec6128d8f fixed so script can find out if an option is selected when no frame exists
no all DOM calls can be made on a select or an option with or without a frame
and the results will be correct
All the PresState info (for now) is kept in the select content, a couple of new
methods were added to nsISelectElement to make it easier for the option to
Get/Set its index
Bug 45760 r=kmcclusk
2000-09-05 13:37:16 +00:00
hyatt%netscape.com 1bb5fdc4fc loadBindingdoc, r=ben 2000-09-05 07:29:01 +00:00
hyatt%netscape.com b03ae07bef Fix double selection problem in trees. r=ben 2000-09-05 07:09:14 +00:00
dbaron%fas.harvard.edu c3bbbaf9c8 Fix build warning by renaming variable. r=disttsc@bart.nl 2000-09-05 02:08:41 +00:00
dbaron%fas.harvard.edu 63c72036b9 Paint backgrounds and borders for inline elements in the foreground layer. b=36710, 27757 r=buster@netscape.com 2000-09-04 21:45:47 +00:00
dbaron%fas.harvard.edu acaf9688ee Don't apply top margin to a block containing only floaters. Let it collapse through instead. b=44419
Only do the quirky fix for bug 37657 for tables, not all blocks.  b=43086
r=buster@netscape.com
2000-09-04 21:44:48 +00:00
dbaron%fas.harvard.edu 4b126abbdf Fix potential leak on failure. r=evaughan 2000-09-04 21:41:07 +00:00
BlakeR1234%aol.com 318932f2e9 Fix 38417, patch by dean_tessman@hotmail.com r=me a=brendan 2000-09-04 21:19:36 +00:00
Peter.VanderBeken%pandora.be dba350450c Correct string usage in XSLT hooks. Not part of default build (ifdef'ed). r=nisheeth. 2000-09-04 05:55:00 +00:00
scc%mozilla.org 90a26e36b4 need to make concatenation arguments homogenous in some cases 2000-09-04 01:33:24 +00:00
dbaron%fas.harvard.edu 577da35f7f Back out hacks to fix earlier string bustage. r=scc 2000-09-04 00:50:52 +00:00
av%netscape.com 41dcfdd44a Fixing #44993, added style visibility check to the object frame, r=buster 2000-09-03 20:54:26 +00:00
dbaron%fas.harvard.edu e9b7ab1585 Continuing to work on speedracer/pravda bustage. 2000-09-03 15:45:57 +00:00
dbaron%fas.harvard.edu b4d0179338 Another attempt to fix speedracer/pravda bustage. They sometimes think nsPromiseConcatenation doesn't exist. I'll ask scc to look at this later. 2000-09-03 15:00:27 +00:00
dbaron%fas.harvard.edu 6e3c153c1f Attempt to get old gcc and old FreeBSD compilers working again. Will ask scc to look for a better fix later. 2000-09-03 13:40:31 +00:00
hyatt%netscape.com 7389f933ac Fix crash on theme application. r=ben 2000-09-03 06:22:21 +00:00
hyatt%netscape.com ba7b94b9b1 Fix crash on skin switching. r=ben 2000-09-03 06:00:09 +00:00
hyatt%netscape.com 4a56981607 Fixed bad regression in XBL. r=ben 2000-09-03 05:35:36 +00:00
dbaron%fas.harvard.edu 75c622b464 Fixing code in MathML that relied on implicit string conversion. r=scc (verbally) 2000-09-02 23:56:19 +00:00
Peter.VanderBeken%pandora.be d41d21ad60 Fix XSLT hooks (Preparation for bug #42228). r=jst@netscape.com, a=waterson@netscape.com. 2000-09-02 15:35:19 +00:00
Peter.VanderBeken%pandora.be 197d30c82b Fix XSLT hooks (Preparation for bug #42228). Remove GetAttributeValueAt (Fixes bug #47454). Clean up code. r=jst@netscape.com, a=waterson@netscape.com. 2000-09-02 15:34:07 +00:00
Peter.VanderBeken%pandora.be 8934df7249 Fix XSLT hooks (Preparation for bug #42228). Implement SetDOMDocument. r=jst@netscape.com, a=waterson@netscape.com. 2000-09-02 15:32:28 +00:00
saari%netscape.com 3b51c1dc7e Undoing what appears to be a complete brain fart of mine from a while ago. I was releasing focus information before its time. 2000-09-02 07:49:39 +00:00
beard%netscape.com 4503140e65 fixing code that relied on implicit string construction (less than optimal temporary fix). r=scc 2000-09-02 07:21:57 +00:00
saari%netscape.com cbf6ecc1f7 fix for 46505, text inputs and text areas need to change their event targets when crossing the anonymous content boundry. r=hyatt 2000-09-02 04:59:44 +00:00
hyatt%netscape.com 34afd36343 Eliminating warning for non-compliant XBL event handlers. 2000-09-02 02:40:28 +00:00
hyatt%netscape.com 3b60037bfe Eliminating warning for non-compliant XBL event handlers. 2000-09-02 02:39:06 +00:00
hyatt%netscape.com 06f5e40b56 General cleanup in XBL. 2000-09-02 01:46:42 +00:00
hyatt%netscape.com b8b870db19 rename arg to parameter, r=brendan 2000-09-02 01:35:44 +00:00
hyatt%netscape.com 1d8f696a54 rename arg to parameter, r=brendan 2000-09-02 01:20:36 +00:00
hyatt%netscape.com d817ceef9a added files: mozilla/layout/xbl/src/nsXBLPrototypeHandler.cpp 2000-09-02 01:11:32 +00:00
hyatt%netscape.com 2909098718 Improve typing speed. r=ben 2000-09-02 01:09:47 +00:00
jst%netscape.com 3e82d91d63 Tweaking the fix to nsbeta3+ bug 28277 so that the src property of the a JavaScript constructed image is correcly set at the time when the onload and onerror events fire. r=nisheeth@netscape.com 2000-09-01 23:23:35 +00:00
hyatt%netscape.com 1d7c6d90f3 More XBL event speed improvements. r=ben 2000-09-01 21:43:34 +00:00
pinkerton%netscape.com bfdab62a91 remove unused xul frames, nsTitledButton and nsToolbarItem 2000-09-01 21:40:34 +00:00
pinkerton%netscape.com 18cb3313de removing unused xul frames, nsTitledButton and nsToolbarItemFrame. r=hyatt. 2000-09-01 21:39:25 +00:00
harishd%netscape.com 4668b6e263 7670 - Enable NOSCRIPT.
r=jst
2000-09-01 18:17:43 +00:00
hyatt%netscape.com bf208e29cb Closing my eyes, crossing my fingers, and pressing the NUKE THE TREE button. r=nobody, I'm trying to recover from vidur's window bomb. :) 2000-09-01 08:40:38 +00:00
jst%netscape.com 7fec4da1ce Comment and whitespace change... 2000-09-01 08:24:00 +00:00
hyatt%netscape.com 26294ec87c XBL syntax changes. r=ben 2000-09-01 08:10:14 +00:00
hyatt%netscape.com a00da988b4 XBL syntax changes. r=ben 2000-09-01 08:07:07 +00:00
jst%netscape.com 7aa7ed7f6d Fixing nsbeta3+ bug 28277. Add a callback to nsHTMLImageElement so that we know when a image created in JavaScript has loaded (or fails to load), this is needed to support onload and onerror event fireing and also to support the '.complete' property on images create in JavaScript. r=nisheeth@netscape.com 2000-09-01 07:05:08 +00:00
nisheeth%netscape.com b19b092432 r=jst. Fixing refcounting of ID attribute atoms. Additional work to earlier checkin for fixing bug 10292. Also, added support for getElementByID() in XML documents. 2000-09-01 02:21:06 +00:00
vidur%netscape.com e153192875 Fix for bug 46861. nsIDOMWindow is now split into two interfaces: a public interface (still called nsIDOMWindow) for embedders and an internal interface (nsIDOMWindowInternal) for internal use. The union of the two interfaces is still visible from JavaScript. r=jst@netscape.com 2000-09-01 01:54:35 +00:00
hyatt%netscape.com 90a907435e XBL syntax changes. r,a=brendan 2000-09-01 01:38:04 +00:00
karnaze%netscape.com ca6ca2bb08 bug 27529 - round column allocations to even pixel value. bug 18955 - don't allocate a col based on desired content if there is a fixed value. r=peterl. 2000-09-01 01:29:50 +00:00
evaughan%netscape.com 4db2157f5c Fix for bug# 44571 2000-09-01 00:59:09 +00:00
vidur%netscape.com a83db20ddf Fix for bug 49187. ViewSource now emits HTML. The VIEW_SOURCE_HTML #define at the top of nsViewSourceHTML.cpp and nsLayoutDLF.cpp allows us to switch back to XML if necessary. The VIEW_SOURCE_COLORING #define in nsViewSourceHTML.cpp allows us to turn on source coloring. Without source coloring (the default right now), bringing up source is considerably faster. r=harishd 2000-09-01 00:57:14 +00:00
pollmann%netscape.com 1b49ca7042 Bug 49897: Only send focus and left click events from labels to target content r=jst@netscape.com 2000-09-01 00:48:47 +00:00
karnaze%netscape.com 9dd5ce2901 Removed references to non existent urls causing assertions. This does not affect the build. 2000-08-31 20:19:25 +00:00
nisheeth%netscape.com a67f193c88 r=ian hickson. Fix for nsbeta3+ bug 41924. Updated the way we calculate alternate text for images that are not found. 2000-08-31 06:27:49 +00:00
mstoltz%netscape.com ecbc31c3d3 Fixing exploits involving changing the location of a window and getting the wrong principal. Bug 48723, r=vidur 2000-08-31 05:53:32 +00:00
saari%netscape.com 970f4d27a5 fixing dr's bustage 2000-08-31 03:35:57 +00:00
buster%netscape.com 2becb1fc67 bug 48295 (floating nested table height initially 0, makes layout wrong)
r=karnaze
values from the wrong struct were getting passed into SetTallestCell
2000-08-31 02:57:58 +00:00
dr%netscape.com 281bde8437 removed nsTabFrame stuff, fix for 50612, r=ben 2000-08-31 02:41:55 +00:00
saari%netscape.com 829e5ce1f4 Removing nsTabFrame.cpp from layout.mcp for dr fix for 50612 2000-08-31 02:39:51 +00:00
pollmann%netscape.com 80059f709d Bug 50143: All radio buttons should be unchecked before checking new one when restoring frame state r=jst@netscape.com 2000-08-31 00:59:31 +00:00
jst%netscape.com ca738093f5 Fixing nsbeta3+ bug 48213 and most of bug 48161. Finally removing the temporary DOM Level 2 debugging code, cleaning out some unused code and making getAttribute and setAttribute on HTML elemensts case insensitive. r=vidur@netscape.com, waterson@netscape.com 2000-08-31 00:36:31 +00:00
anthonyd%netscape.com a05076f17c fix for bug# 50847 (regression)
r=kin
2000-08-30 23:38:26 +00:00
rods%netscape.com 7f7d250050 backed out changes, for build 2000-08-30 22:45:59 +00:00
rods%netscape.com 6615b47a81 44656,33312 - We will now size very closely to IE when in Standard mode, the sizing algorithm
is (aveCharWidth * (sizeAttr+1))+padding+border
50280 - we need to set the mPrefSize width/height to -1 so the size of the text control gets recalculated
b=50280,44656,33312 r=kmclusk
2000-08-30 22:11:05 +00:00
rods%netscape.com f90be81a55 Notifying the doc that an attribute is changed is the wrong approach
Making "REFLOW" be the hint for when rows or cols attrs are changed
Not doing it for input text it seems to work fine without
b=50280
2000-08-30 21:59:53 +00:00
evaughan%netscape.com c7330add6a Fix for bug #47911 -r pinkerton 2000-08-30 21:51:02 +00:00
kin%netscape.com 9cf7b833fb Fix for bug #35899 (Page scrolls on selecting text in position:relative div)
- Rewrote the auto-scrolling code to handle the fact that events are now passed
    directly to frames, even though the mouse is outside the window, and the frame
    is not in the clip view. The old code assumed that the viewport frame always
    caught and handled the event, which was the way it used to be.
  - AutoScroll methods now give the option of scrolling parent scrollable views.

r=jfrancis@netscape.com

Fix for bug #49467 (Spell checking not working in composer or NS 6 IM )

  - We no longer throw an error if we are trying to scroll the selection
    into view, when the selection is in a view that has no parent scrollable
    view ... we just return NS_OK and do nothing.

r=syd@netscape.com
2000-08-30 19:42:47 +00:00
attinasi%netscape.com 551e38cfa8 Fixed items are now removed in ReconstructDocElementHierarchy. b=42114, r=buster@netscape.com 2000-08-30 18:51:45 +00:00
locka%iol.ie 11358c799f Call to GetCurrentURI modified to new style. b=46847, r=valeski, a=valeski 2000-08-30 11:37:06 +00:00
bryner%uiuc.edu 6731fd7727 Fixing 50628 - crash attaching a file to bugzilla on Linux. Need to cast
to the right type in QueryInterface!  r=pavlov.
2000-08-30 08:07:12 +00:00
anthonyd%netscape.com 84ee8357a8 fix for bug# 49957 (this is really mjudge checking in)
r: anthonyd
2000-08-30 04:13:50 +00:00
pinkerton%netscape.com 1d3e1cbcd9 better use of NS_LITERAL_STRING for perf on platforms that can use it. 2000-08-30 02:45:02 +00:00
pinkerton%netscape.com 14a3bdbefd better use of NS_LITERAL_STRING to speed up platforms that benefit from it. 2000-08-30 02:40:19 +00:00
pinkerton%netscape.com 65cc0d01b7 fix for 28309, race condition between timers firing and menus opening. thanks again to dean for providing the patch. 2000-08-30 02:37:27 +00:00
rhp%netscape.com 0070d84c49 Fix for crash when cancelling mail print operations - Bug #: 49280 - r: bienvenu 2000-08-30 02:04:02 +00:00
akkana%netscape.com 719f67e1c8 50134: check offset before calling CharAt(offset-1). r=mcafee 2000-08-30 01:42:27 +00:00
nisheeth%netscape.com b65a3881e0 - Fix for nsbeta3+ bug 10292: ID attribute information is passed up from the parser to the content sink and into the node info objects associated with content objects. nsIXMLContent now inherits from nsIStyledContent which allows
authors to use ID selectors to target elements in an XML document.

- Checking in a P3P related patch to the pres shell, html document, and xml document from Tom Lendacky (toml@us.ibm.com)
2000-08-30 00:35:43 +00:00
akkana%netscape.com c44543ffab 49401: yet another attempt to get menu access keys right.
Change the KeyPress handler to check event flags if we aren't in
  access key focuses mode (it probably should anyway).  r=saari
2000-08-30 00:33:58 +00:00
akkana%netscape.com beed06a132 44372: more efficient fix, thanks to (and r=)scc 2000-08-30 00:25:52 +00:00
evaughan%netscape.com 1b44e9a910 Fix for bug #43384 -r hyatt 2000-08-30 00:10:51 +00:00
hyatt%netscape.com b0d759c1c2 Putting fix for 42492 back in. r=ben 2000-08-30 00:05:59 +00:00
akkana%netscape.com e37ee0aa09 44372: Do entity conversion in attributes as well as normal content. r=harishd 2000-08-29 23:30:45 +00:00
akkana%netscape.com 2c350ddd30 Fix a warning I introduced yesterday, and add a safety check 2000-08-29 23:29:52 +00:00
BlakeR1234%aol.com deb4283b37 Really fix nsbeta3+ 38506 (same reviewer as before) 2000-08-29 23:29:24 +00:00
akkana%netscape.com d68f42dd59 Fix memory leak introduced yesterday. r=harishd 2000-08-29 23:27:09 +00:00
hyatt%netscape.com 88a816e892 Fix for 50691, r=anthonyd 2000-08-29 21:15:10 +00:00
jfrancis%netscape.com 299877ed6d disabling fix for 46554 again, in order to fix smoketest blocker 50653 et al 2000-08-29 19:55:16 +00:00
rods%netscape.com 695ae9cf33 Backing out Hyatt's changes to fix breakage. 2000-08-29 13:39:18 +00:00
rods%netscape.com 104a4c2a53 KeyPress events now let <ctrl<,<slt>,<meta> continue on through, which stopped commonads keys from working
Fixed a couple of off by one errors
Fixed multiple selection with shift key
Fixed focus stealing problem (ifdef'ed out code that was put in to specifically fix this problem)
Fixed div by zero
b=50024,50442,48903
2000-08-29 13:24:38 +00:00
hyatt%netscape.com d629582814 Fix for 42492. r=ben 2000-08-29 08:36:50 +00:00
hyatt%netscape.com ef6474d1ff 43220. r=ben 2000-08-29 08:07:22 +00:00
jfrancis%netscape.com 995b111b30 restoring my original fix for 46554, with some additional tweaks to deal gracefully with generated content. To forgive, divine. 2000-08-29 06:37:12 +00:00
jfrancis%netscape.com 9726e994c4 i'm an idiot 2000-08-29 05:43:03 +00:00
jst%netscape.com 825bad6e37 Fixing memory leaks (bug 49665), found by dbaron. r=pollmann@netscape.com 2000-08-29 05:32:15 +00:00
jfrancis%netscape.com 7d5e6f0454 turns out that selection code is used even when outputing an entire document (beats me why); disabling my changes so that text field output will work again. 2000-08-29 03:09:54 +00:00
hyatt%netscape.com e8381a76bf XBL fix for walling off style (46505). r=ben 2000-08-29 03:08:35 +00:00
hyatt%netscape.com b4c4b5499d Fix for 48261. r=ben 2000-08-29 02:03:59 +00:00