2004-07-30
2004-07-29
editorpatch.txt
This is not complete, some other file has to patched.
For bug253078, but was not the correct way.
2004-07-27
Same functions:
http://lxr.mozilla.org/seamonkey/source/editor/libeditor/html/nsHTMLCSSUtils.cpp#483
http://lxr.mozilla.org/seamonkey/source/editor/libeditor/html/nsHTMLCSSUtils.cpp#1450
2004-07-26
http://lxr.mozilla.org/seamonkey/source/editor/libeditor/html/nsHTMLObjectResizer.cpp#273
http://lxr.mozilla.org/seamonkey/source/editor/libeditor/html/nsHTMLAnonymousUtils.cpp#317
nsIContent *rootContent = doc->GetRootContent();
newContent->SetNativeAnonymous(PR_TRUE);
newContent->SetParent(rootContent);
inside nsHTMLEditor::CreateAnonymousElement seems to work
http://lxr.mozilla.org/seamonkey/source/editor/libeditor/html/nsHTMLEditor.cpp#5950
2004-07-25
2004-07-23
2004-07-21
2004-07-20
2004-07-16
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3a) Gecko/20021204
also not working for empty div clear both
2004-07-15
make -f client.mk clobber
To clean the object files. Something lighter than make -f client.mk distclean
2004-07-13
2004-07-11
http://bugzilla.mozilla.org/show_bug.cgi?id=224057
caused by:
http://bugzilla.mozilla.org/show_bug.cgi?id=127286
??
2004-07-08
http://chargers.theinsiders.com/ table bug
http://forums.mozillazine.org/viewtopic.php?t=91001&sid=3719eace8452b3cb6cd25284cd650022
nspresshell.cpp:
if (viewManager)
{ nsIFrame* focusFrame;
mPresContext->EventStateManager()->GetEventTarget(&focusFrame);
if (!focusFrame) { return nsnull; }
nsIView *aView;
aView = focusFrame->GetView();
nsIScrollableView *scrollView;
scrollView = aView->GetNearestScrollingView();
//result = viewManager->GetRootScrollableView(&scrollView);
if (NS_SUCCEEDED(result) && scrollView)
iview.h:
nsIScrollableView* GetNearestScrollingView() {
nsIScrollableView* sv = nsnull;
CallQueryInterface(this, &sv);
if (sv) {
return sv;
}
nsIView* parent = this->GetParent();
if (parent) {
return GetNearestScrollingView(parent);
}
return nsnull;
}
http://lxr.mozilla.org/seamonkey/source/content/xbl/builtin/htmlBindings.xml
http://lxr.mozilla.org/seamonkey/source/dom/src/base/nsGlobalWindowCommands.cpp#76
http://lxr.mozilla.org/seamonkey/source/layout/html/base/src/nsPresShell.cpp#3288
http://lxr.mozilla.org/seamonkey/source/layout/html/base/src/nsPresShell.cpp#5566
http://lxr.mozilla.org/seamonkey/source/content/events/src/nsEventStateManager.cpp#1635
http://lxr.mozilla.org/seamonkey/source/dom/src/base/nsGlobalWindowCommands.cpp#310
http://lxr.mozilla.org/seamonkey/source/layout/html/base/src/nsPresShell.cpp#3288
http://lxr.mozilla.org/seamonkey/source/layout/html/base/src/nsFrame.cpp#4185
2004-07-06
http://lxr.mozilla.org/seamonkey/source/layout/html/style/src/nsCSSFrameConstructor.cpp#5105
http://lxr.mozilla.org/seamonkey/source/layout/xul/base/src/nsNativeScrollbarFrame.cpp#91
http://lxr.mozilla.org/seamonkey/source/layout/xul/base/src/nsSliderFrame.cpp#253
2004-07-04
2004-07-02
2004-07-01
http://bugzilla.mozilla.org/show_bug.cgi?id=237153
causing regression:
http://bugzilla.mozilla.org/show_bug.cgi?id=249411
??