Improvement requests :  K-Meleon Web Browser Forum
Use this forum to talk about a feature you're missing. 
Needs better layers support
Posted by: R. Cain
Date: August 22, 2000 05:27PM

I d-loaded and tested the K-meleon browser and though it did ok on standard table based pages, it totally got fuxored on layer stacks and loading layers (layers that load external pages into themselves)

I don't know if this board allows HTML or not, so I'll try to post a pic and I'll also provide a link...

IMG1: K-meleon getting munched by layers:

<IMG SRC="http://www.r-cain.com/q3w/images/test_KM.jpg>;

LINK: <a href="http://www.r-cain.com/q3w/images/test_KM.jpg>; click here </a>

here's pics from IE5.5 and Netscape 4.72:
<a href="http://www.r-cain.com/q3w/images/test_NET.jpg">Mozilla</a>;

<a href="http://www.r-cain.com/q3w/images/test_IE.jpg">IE5.5</a>;

A big high-five though for getting in scrolling layers support...
I've been waiting patiently for that feature in a Mozilla based browser.

Keep it up guys, looks good so far.

Options: ReplyQuote
RE: Needs better layers support
Posted by: DaRk SToRaGe
Date: August 22, 2000 09:08PM

Since this is based on Mozilla, you will have to wait until Mozilla supports it.

Options: ReplyQuote
RE: Needs better layers support
Posted by: R. Cain
Date: August 22, 2000 11:52PM

Ermmmm...
last I checked, Mozilla handled stacked layers no prob
(ie: 2 or more layers on top of another)
and the Loading Layer function I used was fine by Mozilla.

Scroll Layers however were not and are not currently handled by Mozilla.
But, I did notice that K-meleon CAN handle scroll layers.
...Just not stacked layers or loading layers

I wouldn't have made this post if the browser behaved like Mozilla
It doesn't and that's why I think this is an issue to be addressed.
Tables are fine for text based sites, but for graphical based sites,
I use layers more than anything.

Fact is, K-meleon blows goats when it comes to layers.
And I'm contemplating adding some code to the scripts to create a
K-meleon and other weak browser based version of the site.

Here, once again for your review:

The pic of K-meleon muching up layers and screwing up the page:
http://www.r-cain.com/q3w/images/test_KM.jpg

Same page being rendered correctly by Netscape 4.72:

www.r-cain.com/q3w/images/test_NET.jpg

...And Mozilla doesn't handle Layers
*sheesh*

Options: ReplyQuote
RE: Needs better layers support
Posted by: R. Cain
Date: August 23, 2000 12:00AM

Oh... and while I'm busy bitching away...

go here:

www.webfreshener.com/freelance/portfolio

check it out with Netscape and K-meleon back to back
watch in disdain as K-meleon garbles up the page
ignoring the CSS command for NO SCROLLING
...see the COOKIE_MONSTER tag it displays
which somehow comes from a 'web bug' that is linked to my cookie_monster.cgi
script with a 1x1 px img tag.
..oh, and it can't do the load layer on the right hand side of the page,
which Netscape can.

Some pretty annoying flaws if I do say so myself.

Like I said before, I think you guys are doing
a great job by making a browser
just needs quite a bit more work.

Options: ReplyQuote
RE: Needs better layers support
Posted by: Christian Mattar
Date: August 23, 2000 12:43PM

Hi!

I think there's a misunderstanding here:

Mozilla != Netscape 4.x!!!!

Mozilla is the open source effort from which Netscape 6.0 will be derived and has nothing in common with the old Netscape 4.x codebase. K-Meleon also uses the new codebase, so it also has nothing to do with Netscape 4.x.
You can find more informationm about this at http://www.mozilla.org

BTW: If you mean the <LAYER>-Tag by saying layer-support, then yes, Mozilla, K-Meleon, and Netscape 6 won't support it (just like IE), because it's not in the HTML standard. <DIV>-tags however are fully supported, stackable and scrollable, probably even more so than in IE.

I took a quick look at http://webfreshener.com/freelance/portfolio/ and it could be possible that the browser sniffer doesn't recognize Mozilla properly, and creates HTML designed for Netscape 4.x or IE.

Options: ReplyQuote
RE: Needs better layers support
Posted by: R. Cain
Date: August 23, 2000 07:30PM

Yes, the Mozilla of NS 4x is not that of the ever delayed NS 6.0
(does it really deserve to skip a full gen cycle?)

And when I say layers I mean:
<DIV ID="layer">

They are called layers... and I can see where you'd get confused with
<layer> tags.

If you looked at the source on the page, you'd see that I used <DIV> tags all the way through it, that is supported by HTML4.0 the standard all browsers should implement within their source.

Look, you people can try to skirt the issue as much as possible,
but this is a bit of a drawback, and what about the lack of CSS?
I mean, so far, K-meleon looks like it only truly supports HTML3.0
....kinda extreme, but without full support of <DIV> and CSS, I don't know how else to word it.
And I felt this was an issue worth getting out to the developers.



Options: ReplyQuote
RE: Needs better layers support
Posted by: Ben Efros
Date: August 23, 2000 09:51PM

I believe, although I haven't had a chance to scan the source, that K-meleon uses the mozilla code to handle CSS. Now if that is true, you should not be reporting the problems here unless they are not happening in milestone 17 of mozilla. If they are happening in the milestones, report the bugs to mozilla coders nd not here.

Options: ReplyQuote
RE: Needs better layers support
Posted by: Christian Mattar
Date: August 24, 2000 03:49PM

Hi!

I really want Mozilla/NS6/K-Meleon to succeed, so I'll take a look at the page and perhaps file a bug report at bugzilla.mozilla.org if I can find the problem.
Mozilla usually handles DIVs very well in all flavours.

In the meantime, you can take a look at http://www.richinstyle.com where the CSS-support of every major browser is shown. You'll see that Mozilla is currently the clear winner, although there are still bugs, of course.

If I file a bug or find a bug associated with the problem you describe, I could send you an e-mail with the Bugnr. so you can watch the progress while the bug is being fixed.

Options: ReplyQuote
RE: Needs better layers support
Posted by: Christian Mattar
Date: August 24, 2000 04:04PM

Hi!

Like I stated in a previous message, the problem is indeed related to false browser sniffing.

The page checks if the browser has support for either

document.layers (for NS 4.x support)

or

document.all (for IE support)

Mozilla uses neither of these Dynamic Object Models (DOM) but uses the standard-conforming W3C-model instead (IE5 supports this, too)
You can see the specifications at http://www.w3c.org.
IIRC, there's a quite easy workaround to let most pages, which work for IE4.x, work in Mozilla. You simply have to map the function getElementByID() to the document.all-object via JavaScript. I don't know the exact syntax, but if you have some JavaScript experience, it's probably not very hard.

Please note that the absolute positioning of the DIV-tags worked properly, only the content wasn't visible due to the problem with the DOM.

Feel free to email me if you have further questions

Options: ReplyQuote


K-Meleon forum is powered by Phorum.