Mozilla stuff

Uhm...

2004-07-30

focus shift bug:
http://smotricz.com/~carl/MountBug.html

2004-07-29

editorpatch.txt
This is not complete, some other file has to patched.
For bug253078, but was not the correct way.

http://lxr.mozilla.org/seamonkey/source/parser/htmlparser/src/nsElementTable.cpp#821
http://bugzilla.mozilla.org/show_bug.cgi?id=154173
http://bugzilla.mozilla.org/show_bug.cgi?id=167075

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://forums.mozillazine.org/viewtopic.php?p=677447&highlight=#677447

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

From Peter Gabriel - Birdy:

Floating Dogs, the Heat - great music.

Longest bugzilla comment ever:
http://bugzilla.mozilla.org/show_bug.cgi?id=25537#c231

2004-07-23

bug 252690, bug 250208

2004-07-21

Poor performance at: http://www.highfidelityreview.com/
See:
http://forums.mozillazine.org/viewtopic.php?t=89779&start=15&sid=e0014ab922c17b64c11839ce4fe61049

2004-07-20

http://lxr.mozilla.org/seamonkey/source/content/events/src/nsEventStateManager.cpp#1391

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

When looking for an old build:
http://archive.mozilla.org/pub/

2004-07-15

make -f client.mk clobber
To clean the object files. Something lighter than make -f client.mk distclean

2004-07-13

Forgot about that one bug I said would do in a week or so.

Have to tell bzbarsky about the patches/workarounds for the hr/floating div bug.

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

http://lxr.mozilla.org/seamonkey/source/layout/html/base/src/nsPresShell.cpp#3271

2004-07-06

http://lxr.mozilla.org/seamonkey/source/content/shared/public/nsCSSAnonBoxList.h#91

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

make -s -f client.mk MOZ_CO_DATE=2004-06-26 for specific date builds.

2004-07-02

patch -p0 --dry-run < test.patch
for patch testing

2004-07-01

http://bugzilla.mozilla.org/show_bug.cgi?id=237153
causing regression:
http://bugzilla.mozilla.org/show_bug.cgi?id=249411
??

http://bugzilla.mozilla.org/show_bug.cgi?id=248753
maybe also fix for that other bug you have to find?

Textarea dom selection could be better