roman@nomail wrote:
[color=blue]
> Hello,
>
> I've just downloaded and installed Opera711, good browser. Most of my
> scripts work just fine, except the ones that use "clip" property. Opera
> docs say that it's supported but I can't get it to work.[/color]
There are a few bugs. One well known in Opera 7.x is that the background
(image, color) is not clipped, only content.
It seems that[color=blue]
> clip is some kind of object (some kind of rect?) but I'm unable to read
> it's properties, only
> methods.[/color]
clip is a property. The only shape supported is rect.
It has only one method "replace".
?
Can you tell me what's going[color=blue]
> on there? And why can't I read properties of objects with the function
> below?
> ----------------------------------------
> <HTML><HEAD><TITLE></TITLE>
> <script type="text/javascript">
> function getClip(o){
> var c = o.style.clip;
> //document.zz.qq.value = objProps(c, 'o');
> //document.zz.qq.value = objProps(o, 'o');
> document.zz.qq.value = objProps(o.style, 'o');[/color]
Opera 7.20 beta now supports getComputedStyle and getComputedValue.
Your getClip function is not best I think. I would have been using
currentStyle for IE instead of style... if you want to get the default
css declarations of existing elements.
[color=blue]
> }
> function objProps(obj, name){
> var str = "";
> for (var i in obj)
> str += name + '.' +i+ '=' +obj[i]+ '\n';
> return str;
> }
> function s(){
> this.h = "k";
> }
> </script>
> </HEAD><BODY>
>
> <DIV ONCLICK="getClip(this)"
> STYLE="position:absolute; top:0; left:0; width:100; height:50">Get
> Clip</DIV>
>[/color]
Invalid CSS code.
"a unit must be specified for length values"
http://www.w3.org/TR/CSS2/syndata.html#parsing-errors
" The format of a length value (denoted by <length> in this
specification) is an optional sign character ('+' or '-', with '+' being
the default) immediately followed by a <number> (with or without a
decimal point) immediately followed by a unit identifier (e.g., px, deg,
etc.)."
http://www.w3.org/TR/CSS2/syndata.html#value-def-length
Your getClip function should be coded in a way that it should return
rect(auto auto auto auto)
or
rect(auto,auto,auto,auto)
in any DOM2 and CSS2 compliant browser.
[color=blue]
> <FORM NAME="zz" ACTION="" METHOD="">
> <TEXTAREA NAME="qq" COLS=65 ROWS=15></TEXTAREA>[/color]
It's always better to quote attribute values as it speeds up a bit
parsing and rendering and it avoids errors of all kinds in all sorts of
situations.
http://www.htmlhelp.com/faq/html/basics.html#quotes http://www.html-faq.com/htmlvalidation/?quoteattributes
Why attribute values should always be quoted in HTML
http://www.cs.tut.fi/~jkorpela/qattr.html
DU
--
Javascript and Browser bugs:
http://www10.brinkster.com/doctorunclear/
- Resources, help and tips for Netscape 7.x users and Composer
- Interactive demos on Popup windows, music (audio/midi) in Netscape 7.x
http://www10.brinkster.com/doctorunc...e7Section.html