[Webkit-unassigned] [Bug 110853] Reading border radius from style property returns in wrong order.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 28 19:04:48 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=110853





--- Comment #14 from Jared Wyles <wyles at adobe.com>  2013-02-28 19:07:12 PST ---
(In reply to comment #13)
> (In reply to comment #12)
> >
> > I am a new to this process, should i just browser things like like jquery mobile, kendo-ui and other such mobile frameworks to see if i can find any evidence of it being used and relied on?
> 
> That would be helpful.

Had a look through jquery-mobile it depends on jquery for all its css. Uses the .css function, which under calls to a function like..
getStyles = function( elem ) {
        return window.getComputedStyle( elem, null );
}; 

So good there, i had a quick look at kendo-ui, it also has a hard dependency on jquery so they are using the same approach. 

There may be a small problem with anyone using zepto as it seems to favour using .style over getComputedStyle.   

 css: function(property, value){
      if (value === undefined && typeof property == 'string')
        return (
          this.length == 0
            ? undefined
            : this[0].style[camelize(property)] || getComputedStyle(this[0], '').getPropertyValue(property))

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list