.. |
public
|
Do style resolution of later siblings required by the CSS + combinator on event state and attribute changes by changing the result of Has(Attribute|State)DependentStyle into a bitfield and setting and handling the restyle-later-siblings bit appropriately. b=15608 r+sr=bzbarsky
|
2004-01-14 01:36:35 +00:00 |
src
|
Remove NS_FRAME_HAS_LOADED_IMAGES state bit. b=201076 r+sr=bzbarsky
|
2004-01-13 01:18:51 +00:00 |
tests
|
Eliminate nsIStyleSet as an XPCOM interface, making the implementation internal to layout. Frame constructor ownership moves to the pres shell, and the style set methods that forward to the frame constructor are gone. Rewrote style set sheet add/remove to reduce code size. For more details, see bug 64116. r+sr=dbaron.
|
2004-01-07 22:30:53 +00:00 |
.cvsignore
|
…
|
|
Makefile.in
|
Bug 86947:
|
2001-10-25 01:08:40 +00:00 |
bidicattable.h
|
Fix build on gcc 3.4 by removing extra semicolons (bug 218551). r/sr=dbaron, a=brendan.
|
2003-09-07 22:37:27 +00:00 |
nsAutoCopy.cpp
|
Remove unneeded include nsWidgetsCID.h (bug 189813), patch by luke_harless@attglobal.net, r=jkeiser@netscape.com, sr=sfraser@netscape.com
|
2003-03-06 00:59:43 +00:00 |
nsBidi.cpp
|
Bug 126484 Occurences of uninitialized variables being used before being set (in Bidi files)
|
2003-02-23 11:10:28 +00:00 |
nsBidi.h
|
Make Bidi symmetric swapping handle characters outside BMP. Bug 122800, r=mkaply, sr=darin
|
2002-11-22 23:49:29 +00:00 |
nsBidiPresUtils.cpp
|
Bug 190735. deCOMtaminate nsIFrame::FirstChild and nsIFrame::GetAdditionalChildListName. r+sr=bz
|
2004-01-09 14:20:53 +00:00 |
nsBidiPresUtils.h
|
Use a hashtable instead of searching an array, to make RemoveBidiContinuation() not be O(n^2). Bug 212827, r+sr=bzbarsky.
|
2003-07-24 18:33:50 +00:00 |
nsBidiUtils.cpp
|
Don't do numeric substitution in Arabic text by default. Bug 181711, r+sr=rbs, a=asa.
|
2003-05-08 18:38:19 +00:00 |
nsBidiUtils.h
|
Don't do numeric substitution in Arabic text by default. Bug 181711, r+sr=rbs, a=asa.
|
2003-05-08 18:38:19 +00:00 |
nsCSSColorUtils.cpp
|
Fixing compiler warnings. "Comparison is always false due to limited range of data type". No bug.
|
2003-07-09 06:42:14 +00:00 |
nsCSSColorUtils.h
|
fix the color code to make tables in quirks mode on white background to look outset bug 14090 r/sr=bzbarsky
|
2003-01-12 12:11:05 +00:00 |
nsCSSFrameConstructor.cpp
|
Do style resolution of later siblings required by the CSS + combinator on event state and attribute changes by changing the result of Has(Attribute|State)DependentStyle into a bitfield and setting and handling the restyle-later-siblings bit appropriately. b=15608 r+sr=bzbarsky
|
2004-01-14 01:36:35 +00:00 |
nsCSSFrameConstructor.h
|
Do style resolution of later siblings required by the CSS + combinator on event state and attribute changes by changing the result of Has(Attribute|State)DependentStyle into a bitfield and setting and handling the restyle-later-siblings bit appropriately. b=15608 r+sr=bzbarsky
|
2004-01-14 01:36:35 +00:00 |
nsCSSRendering.cpp
|
Bug 210269. Reduce use of SetAttr during reflow. Also, fix up the API that gets the scrollbar dimensions of a scrollframe to always work right for RTL. r+sr=bryner
|
2004-01-09 19:21:20 +00:00 |
nsCSSRendering.h
|
Bug 191938. 'Dont print backgrounds' by setting background to white. also clean up unused params and make background-attachment:fixed work in printing/printpreview. r+sr=bzbarsky
|
2003-02-23 02:49:22 +00:00 |
nsCaret.cpp
|
Bug #226325 --> Back out the fix for Bug #98564 as this opened us up to a regression where trailing stationary caret remnant left after backspace.
|
2003-12-03 20:32:47 +00:00 |
nsCaret.h
|
Bug 199412: optimize nsTypedSelection::ScrollIntoView r/sr=sfraser
|
2003-04-20 01:03:40 +00:00 |
nsChangeHint.h
|
Do style resolution of later siblings required by the CSS + combinator on event state and attribute changes by changing the result of Has(Attribute|State)DependentStyle into a bitfield and setting and handling the restyle-later-siblings bit appropriately. b=15608 r+sr=bzbarsky
|
2004-01-14 01:36:35 +00:00 |
nsChildIterator.cpp
|
deCOMtaminate nsIDocument by changing methods to use return value instead of out-params, eliminating unused nsresult return values, moving some members to nsIDocument and inlining the getters/setters. Bug 222134, r=bzbarsky, sr=jst.
|
2003-10-22 06:09:48 +00:00 |
nsChildIterator.h
|
Fixing bug 215981. DeCOMtaminating nsIContent and nsIDocument some, and also some minor changes to other related interfaces. r=caillon@aillon.org, sr=peterv@propagandism.org.
|
2003-09-27 04:18:26 +00:00 |
nsCompatibility.h
|
Split strict mode into almost-standards and full-standards mode, where the only quirk in almost standards mode is the quirky inline box model. Remove previous fix for bug 151620. Tweak mode detection to use almost-standards for XHTML Transitional, HTML 4.01 transitional with system ID, and for IBM system DOCTYPE. b=153032 r=karnaze, bzbarsky, harishd sr=waterson
|
2002-06-25 21:16:17 +00:00 |
nsDocumentViewer.cpp
|
Improve the way in which nsEvent and its subclasses are initialized. Commonly-used members can now be initialized via an inline constructor, and all other members are initialized to zero. eventStructType is set automatically. This also fixes some cases where an eventStructType was doubling as a message -- NS_TEXT_EVENT is now only used as an eventStructType, with a message of NS_TEXT_TEXT. NS_COMPOSITION_* events get an eventStructType of NS_COMPOSITION_EVENT, and ditto for NS_RECONVERSION_*. NS_DRAGDROP_EVENT is no longer an eventStructType since it is not a unique type of struct. There is also some miscellaneous cleanup to nsDOMEvent. Bug 220228, r=jst, sr=blizzard.
|
2004-01-12 08:25:18 +00:00 |
nsFrameContentIterator.cpp
|
Bug 190735. deCOMtaminate nsIFrame::FirstChild and nsIFrame::GetAdditionalChildListName. r+sr=bz
|
2004-01-09 14:20:53 +00:00 |
nsFrameManager.cpp
|
Do style resolution of later siblings required by the CSS + combinator on event state and attribute changes by changing the result of Has(Attribute|State)DependentStyle into a bitfield and setting and handling the restyle-later-siblings bit appropriately. b=15608 r+sr=bzbarsky
|
2004-01-14 01:36:35 +00:00 |
nsFrameTraversal.cpp
|
Fix warnings about uninitialized 'result' in nsFrameTraversal. r+sr=brendan
|
2004-01-09 21:45:24 +00:00 |
nsFrameTraversal.h
|
82151 r=jfrancis sr = kin
|
2002-04-16 02:42:09 +00:00 |
nsIAutoCopy.h
|
Convert handwritten GetIID methods to use NS_DEFINE_STATIC_IID_ACCESSOR and add |const| to GetCID methods so that static |nsID|s are declared as |const|. b=153525 sr=jag r=bryner
|
2002-06-26 03:38:55 +00:00 |
nsICaret.h
|
Bug 199412: optimize nsTypedSelection::ScrollIntoView r/sr=sfraser
|
2003-04-20 01:03:40 +00:00 |
nsIChromeEventHandler.idl
|
Header include dependency cleanup. b=64023 r=jag rs=brendan
|
2001-07-16 02:40:48 +00:00 |
nsIDocumentViewer.h
|
Bug 209087
|
2003-06-13 20:10:01 +00:00 |
nsIDocumentViewerPrint.h
|
Eliminate nsIStyleSet as an XPCOM interface, making the implementation internal to layout. Frame constructor ownership moves to the pres shell, and the style set methods that forward to the frame constructor are gone. Rewrote style set sheet add/remove to reduce code size. For more details, see bug 64116. r+sr=dbaron.
|
2004-01-07 22:30:53 +00:00 |
nsIFrameSelection.h
|
patch from mjudge to maintainselection; r/sr=dbaron, bug=56401
|
2003-07-21 19:51:34 +00:00 |
nsIFrameTraversal.h
|
Relicensing Round 1, Take 2. Most C-like NPL files -> NPL/GPL/LGPL. Bug 98089.
|
2001-09-28 20:14:13 +00:00 |
nsIImageMap.h
|
Bug 132158. Active Accessibility: expose correct bounds information and accessible value for HTML areas. r=saari, sr=alecf.
|
2002-08-17 01:46:58 +00:00 |
nsILayoutDebugger.h
|
Extraneous Symbol Removal. Patch by Jon Smirl jonsmirl@mediaone.net. r=dougt@netscape.com, sr=alecf@netscape.com. Bug 104172 , 104316 , 104420 , 104426 , 104461 , 104511 , 104527
|
2001-10-23 01:37:21 +00:00 |
nsILayoutHistoryState.h
|
Bug 77834: Fix problem where form control state is being restored to the wrong form control or not restored at all when going back and forth through session history. The problem was that the hash key we used was the content ID, which was not consistent from page load to page load. The fix was to key instead by index of form in document / index of control in form, with logic to fall back to content ID if we are unable to do this. r=nisheeth@netscape.com, sr=jst@netscape.com, a=drivers@mozilla.org (blizzard@mozilla.org)
|
2001-05-30 11:26:21 +00:00 |
nsIPercentHeightObserver.h
|
bug 125543 - Prevent row groups from splitting in the reflow preceeding a special height reflow. Cells are only notified that they should observe a percent height element if the element is inside the table's cell. Percent height elements inside the body will have a height based on the page height when printing. sr=kin, r=alexsavulov.
|
2002-04-10 21:32:41 +00:00 |
nsIPresShell.h
|
Additional cleanup related to bug 64116. r=bzbarsky.
|
2004-01-08 19:23:12 +00:00 |
nsIPresState.h
|
bug 218297 : disabled property of input elements is not stored in history
|
2003-11-10 05:52:29 +00:00 |
nsIReflowCallback.h
|
Convert handwritten GetIID methods to use NS_DEFINE_STATIC_IID_ACCESSOR and add |const| to GetCID methods so that static |nsID|s are declared as |const|. b=153525 sr=jag r=bryner
|
2002-06-26 03:38:55 +00:00 |
nsISelectionImageService.idl
|
14835 r=pavlov sr=sfraser alpha blending on images to denote selection.
|
2002-09-11 03:03:49 +00:00 |
nsImageLoader.cpp
|
General deCOMtamination of nsIDocument, nsIContent, and nsIFormSubmission. Eliminating nsIAttributeContent, and doing some URL->URI changes. r+sr=peterv@propagandism.org
|
2004-01-09 23:54:21 +00:00 |
nsImageLoader.h
|
Fixing bug 84654. r=bryner sr=sfraser. image blocking should not block backgrounds if you use it
|
2002-02-14 23:31:54 +00:00 |
nsLayoutAtomList.h
|
Treat relatively positioned elements at original position for flowing around floats. b=205087 r+sr=bzbarsky
|
2004-01-11 04:29:09 +00:00 |
nsLayoutAtoms.cpp
|
fix for bug 199170, convert layout to use nsStaticAtom. sr=dbaron
|
2003-04-02 04:51:07 +00:00 |
nsLayoutAtoms.h
|
Bug 190735. DeCOMtaminate nsIFrame::GetFrameType. r+sr=bzbarsky
|
2003-10-31 20:19:18 +00:00 |
nsLayoutDebugger.cpp
|
Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag
|
2003-01-08 21:07:51 +00:00 |
nsLayoutErrors.h
|
bug 218297 : disabled property of input elements is not stored in history
|
2003-11-10 05:52:29 +00:00 |
nsLayoutHistoryState.cpp
|
Fix build on gcc 3.4 by removing extra semicolons (bug 218551). r/sr=dbaron, a=brendan.
|
2003-09-07 22:37:27 +00:00 |
nsLayoutUtils.cpp
|
Bug 190735. deCOMtaminate nsIFrame::FirstChild and nsIFrame::GetAdditionalChildListName. r+sr=bz
|
2004-01-09 14:20:53 +00:00 |
nsLayoutUtils.h
|
Bug 222468. Make nsLayoutUtils::CompareTreePosition work even if the aCommonAncestor parameter is not, in fact, a common ancestor.
|
2003-10-17 14:10:02 +00:00 |
nsPresContext.cpp
|
Remove NS_FRAME_HAS_LOADED_IMAGES state bit. b=201076 r+sr=bzbarsky
|
2004-01-13 01:18:51 +00:00 |
nsPresContext.h
|
Eliminate nsIStyleSet as an XPCOM interface, making the implementation internal to layout. Frame constructor ownership moves to the pres shell, and the style set methods that forward to the frame constructor are gone. Rewrote style set sheet add/remove to reduce code size. For more details, see bug 64116. r+sr=dbaron.
|
2004-01-07 22:30:53 +00:00 |
nsPresShell.cpp
|
Improve the way in which nsEvent and its subclasses are initialized. Commonly-used members can now be initialized via an inline constructor, and all other members are initialized to zero. eventStructType is set automatically. This also fixes some cases where an eventStructType was doubling as a message -- NS_TEXT_EVENT is now only used as an eventStructType, with a message of NS_TEXT_TEXT. NS_COMPOSITION_* events get an eventStructType of NS_COMPOSITION_EVENT, and ditto for NS_RECONVERSION_*. NS_DRAGDROP_EVENT is no longer an eventStructType since it is not a unique type of struct. There is also some miscellaneous cleanup to nsDOMEvent. Bug 220228, r=jst, sr=blizzard.
|
2004-01-12 08:25:18 +00:00 |
nsPresState.cpp
|
bug 218297 : disabled property of input elements is not stored in history
|
2003-11-10 05:52:29 +00:00 |
nsStyleChangeList.cpp
|
In certain dynamic updates, frames scheduled to be reprocessed could be destroyed in a ripple effect. Since this was a root problem, the patch fixes the crasher bugs 123049, 133219 154797 187671 187890, r=bzbarsky, sr=dbaron
|
2003-01-20 01:07:03 +00:00 |
nsStyleChangeList.h
|
In certain dynamic updates, frames scheduled to be reprocessed could be destroyed in a ripple effect. Since this was a root problem, the patch fixes the crasher bugs 123049, 133219 154797 187671 187890, r=bzbarsky, sr=dbaron
|
2003-01-20 01:07:03 +00:00 |
nsStyleConsts.h
|
Add pref for the default :active styling. Bug 142163, patch by
|
2003-10-15 01:56:12 +00:00 |
symmtable.h
|
Make Bidi symmetric swapping handle characters outside BMP. Bug 122800, r=mkaply, sr=darin
|
2002-11-22 23:49:29 +00:00 |