Slashdot Mirror


User: BZ

BZ's activity in the archive.

Stories
0
Comments
2,318
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,318

  1. Re:That's cool... on Mozilla 1.1 Hits The Street · · Score: 3, Interesting

    There aren't the resources to do it. There aren't even the resources to do the two branches we're doing, really.

  2. Re:No more Green Mozilla. on Godzilla Getting Ready to Stomp Mozilla? · · Score: 2

    That's a gecko. It looks nothing like the green Mozilla logo.

  3. Re:New in 1.1 from 1.0 (karma whore) on Mozilla 1.1 Beta Out And About · · Score: 2

    There is such a pref. See all.js in the Mozilla installation, search for "middle".

  4. Re:yipee...but on Mozilla 1.1 Beta Out And About · · Score: 2

    works too, y'know....

  5. Re:Duplicates aren't always that bad - on Mozilla 1.1 Beta Out And About · · Score: 2, Insightful

    I would not call "Layout" fine-grained. In the core components (DOM, layout, style system) keeping up with the new bug flow is nearly impossible. Style system is the one I have the most experience with, and 50% of those are duplicates, while a further 40% are misunderstandings of the CSS spec... Leaving 90% of the time spent on those bugs (or about 4 hours a day each for a few people) basically wasted.

  6. Re:The problems: fonts and X on A Linux User Goes Back · · Score: 2

    > Why not run Mozilla locally

    Because I do not own a Solaris machine and need to test Mozilla/Solaris?

  7. Re:BS detected! on Software Engineering at Microsoft · · Score: 2

    Two words:

    Library Stripping.

  8. Re:Truly amazing! on First Reviews of Mozilla 1.0 Roll In · · Score: 2

    The file extension bug is unfortunately just not on people's radars... I want to fix it by I was kinda tied up with finishing up my thesis and graduating. Now that that's over, I should be able to fix it within the next week and a half or so.

  9. Re:Interesting results... on Kartoo Search Engine Presents Results as a Map · · Score: 2

    The site actually goes out of its way to detect Mozilla and give it different JS... then it has that whole section of code not written and instead has some debug crap someone never bothered to take out. The debug crap is what people are seeing.

  10. Re:Wrong! (Was: Bug #22274) on Mozilla RC3 Released · · Score: 2

    Of course the spec for HTML does not say how to handle spacing... The spec for HTML does not say how to actually _render_ anything. That's covered by CSS.

  11. Re:OpenBSD on Mozilla RC3 Released · · Score: 2

    This will happen as soon as the OpenBSD folks (or anyone familiar with the OpenBSD kernel) write the assembly stubs needed by XPConnect. They have been approached about this repeatedly, and have repeatedly stated outright that they do not care to have Mozilla run on OpenBSD.

  12. Re:Wrong! (Was: Bug #22274) on Mozilla RC3 Released · · Score: 2

    See http://www.mozilla.org/docs/web-developer/quirks/d octypes.html

    Basically, a parser bug in NS6/0.9.4 and everything before made your page render in quirks mode. Removing the DTD URI from the doctype will make it render in quirks mode again.

  13. Re:anyone else notice this error... on Mozilla RC3 Released · · Score: 2

    Release notes are your friend. http://mozilla.org/releases/mozilla1.0/#devel second paragraph will tell you what's up.

  14. Re:The coders are getting a bit punch though. on Mozilla RC3 Released · · Score: 2

    So. You have two options. You can temporarily disable the feature. Or you can rewrite the whole thing from scratch, test it, test its interaction with other components, debug it, fix the issues, test it some more.

    Guess which is more likely to happen in a freeze period right before a release?

  15. Re:Any ideas as to when... on Mozilla RC3 Released · · Score: 2

    The "experimental" stuff has landed on the trunk. That happened two weeks ago. That means it will be in Mozilla 1.1. It may or may not be in 1.0.1, depending.

  16. Re:please!!! produce an unstripped linux nightly on Mozilla 1.0 RC2 is out · · Score: 2

    A unstripped mozilla build would be well over 90MB in size.... fairly prohibitive as a download. Furthermore, the Linux kernel does not create core files for multithreaded programs. So even if it were unstripped there would be no core file.

  17. Re:CSS rendering bug on Mozilla 1.0 RC2 is out · · Score: 2

    er, padding on the "ul"

    As a note, putting borders on all the elements involved should make it clear what's going on.

  18. Re:CSS rendering bug on Mozilla 1.0 RC2 is out · · Score: 2
    Well... the padding on the

    is completely under the float. So the rendering is almost correct (the overlap of the float and the bullets is an error).

  19. Re:CSS rendering bug on Mozilla 1.0 RC2 is out · · Score: 2

    Here is the mail I just sent the testcase author about the second testcase:

    The second testcase [2] has the following style rules:

    DIV.left {
    float: left;
    width: 70%;
    }

    DIV.right {
    padding: 2%;
    margin: 2%;
    float: right;
    width: 25%;
    }

    The expected "correct" rendering is to put the divs side-by-side.
    However, just adding up the widths gives us:
    70% + 2% + 2% + 25% + 2% + 2% = 103% > 100%
    Therefore the two divs cannot possibly fit side-by-side and
    conforming UAs should show the "right" div below the "left" div (but
    floated to the right).

    Similar problems happen with the two divs with class="pointers" --
    the widths of those two divs (including margins and padding) are
    36% each, which, when added to the 33% of the DIV.right means those
    three divs cannot all fit side-by-side either (as the image
    indicating "correct" rendering would have them do).

  20. Re:CSS rendering bug on Mozilla 1.0 RC2 is out · · Score: 2
    OK. I have now had time to investigate the first testcase in detail. Its author committed a major error. The testcase sets the margin on the
      to 0, but does not change the padding. In Mozilla the margin is already 0 by default but the _padding_ is not. As a result, the
        ends 40px wider than the testcase thinks it should.

        This is an authoring error, pure and simple.

        Looking at the second testcase now.
  21. Re:CSS rendering bug on Mozilla 1.0 RC2 is out · · Score: 3, Insightful

    The page uses no doctype, so is rendered in "quirks" mode by Mozilla instead of "standards" mode. Testing standards support in a mode that purposefully violates some standards to be compatible with existing content is silly...

    That and the failure of any test of standards to validate in an HTML validator kinda casts doubt on the validity of the test...

  22. Re:Are back menus fixed yet? on Mozilla 1.0 RC2 is out · · Score: 2

    Sorry, _I_ use some of those other things. And I _never_ use "back". But then I'm a keyboard-mostly user and I just use alt-left...

  23. Re:Is there a real exploit here? on Don't Hit That Back Button · · Score: 2

    Except data: can't read things off your hard drive...

  24. Re:Goodbye, ActiveX! Don't let the door hit you in on Browser Wars II: CompuServe Strikes Back · · Score: 2

    Sorry, the CSS property index lists proprietary _properties_ but not properietary _values_ of properties. For example, reading that doesn't tell me that "cursor: hand" is a complete and utter IE-ism.

  25. Re:Exactly on Mozilla Poised for Revival? · · Score: 2

    Unfortunately the same is true of IE/Windows (up to and including version 6.0 -- try using static positioning sometime....)