Re: [webkit-dev] getComputedStyle returns percentage values for left / right / top / bottom

2011-11-22 Thread Jarred Nicholls
2011/11/22 Jarred Nicholls 

> Indeed it is correct.  The CSS W3 draft also states that those properties
> return the "specified value", which if a percentage should return a
> percentage by definition.


By that I meant the *older* CSS drafts - the point being that it's always
been defined in that way for those properties.


>
>
> On Mon, Nov 21, 2011 at 10:49 PM, Xianzhu Wang (王显著) <
> wangxian...@chromium.org> wrote:
>
>> Sorry my previous post might be misleading. Just verified that in the
>> CSSOM draft the list of properties that getComputedStyle() may return the
>> used value doesn't include left/right/top/bottom. That is, according to the
>> draft, WebKit's current behavior about left/right/top/bottom is correct.
>>
>>
>> On Tue, Nov 22, 2011 at 10:50 AM, Xianzhu Wang (王显著) <
>> wangxian...@chromium.org> wrote:
>>
>>> A related bug is: https://bugs.webkit.org/show_bug.cgi?id=42799
>>> It's about the problem of pixelXXX CSS properties. Is these pixelXXX
>>> properties a workaround of bug 29084? I think after we fix 29084 we can
>>> drop the pixelXXX properties.
>>>
>>> The current draft CSSOM says getComputedStyle() should return the
>>> resolved values, and for width, height etc., "if the property applies to
>>> the element or pseudo-element and the resolved value of the 'display'
>>> property is not none, the resolved value is the used value. Otherwise the
>>> resolved value is the computed value."
>>>
>>> On Tue, Nov 22, 2011 at 8:02 AM, Ryosuke Niwa  wrote:
>>>
 Per bugzilla discusion, FF, IE, and Opera all return pixel values so we
 should just fix this bug.

 - Ryosuke

 On Mon, Nov 21, 2011 at 3:19 PM, Mike Sherov wrote:

> I'd like to begin working on this bug (
> https://bugs.webkit.org/show_bug.cgi?id=29084), and making sure that
> getComputedStyle() always returns a pixel value "used value" when 
> expected,
> although I suspect this is a controversial change, and
> http://www.webkit.org/coding/contributing.html#writecode says to ask
> in this mailing list before making a controversial change. Can anyone give
> me some feedback here on whether or not I can and should move forward on
> this?
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>
>

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


>>>
>>
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org
>> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>>
>>
>
>
> --
> 
>
> *Sencha*
> Jarred Nicholls, Senior Software Architect
> @jarrednicholls
> 
>
>


-- 


*Sencha*
Jarred Nicholls, Senior Software Architect
@jarrednicholls

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] getComputedStyle returns percentage values for left / right / top / bottom

2011-11-22 Thread Jarred Nicholls
Indeed it is correct.  The CSS W3 draft also states that those properties
return the "specified value", which if a percentage should return a
percentage by definition.

On Mon, Nov 21, 2011 at 10:49 PM, Xianzhu Wang (王显著) <
wangxian...@chromium.org> wrote:

> Sorry my previous post might be misleading. Just verified that in the
> CSSOM draft the list of properties that getComputedStyle() may return the
> used value doesn't include left/right/top/bottom. That is, according to the
> draft, WebKit's current behavior about left/right/top/bottom is correct.
>
>
> On Tue, Nov 22, 2011 at 10:50 AM, Xianzhu Wang (王显著) <
> wangxian...@chromium.org> wrote:
>
>> A related bug is: https://bugs.webkit.org/show_bug.cgi?id=42799
>> It's about the problem of pixelXXX CSS properties. Is these pixelXXX
>> properties a workaround of bug 29084? I think after we fix 29084 we can
>> drop the pixelXXX properties.
>>
>> The current draft CSSOM says getComputedStyle() should return the
>> resolved values, and for width, height etc., "if the property applies to
>> the element or pseudo-element and the resolved value of the 'display'
>> property is not none, the resolved value is the used value. Otherwise the
>> resolved value is the computed value."
>>
>> On Tue, Nov 22, 2011 at 8:02 AM, Ryosuke Niwa  wrote:
>>
>>> Per bugzilla discusion, FF, IE, and Opera all return pixel values so we
>>> should just fix this bug.
>>>
>>> - Ryosuke
>>>
>>> On Mon, Nov 21, 2011 at 3:19 PM, Mike Sherov wrote:
>>>
 I'd like to begin working on this bug (
 https://bugs.webkit.org/show_bug.cgi?id=29084), and making sure that
 getComputedStyle() always returns a pixel value "used value" when expected,
 although I suspect this is a controversial change, and
 http://www.webkit.org/coding/contributing.html#writecode says to ask
 in this mailing list before making a controversial change. Can anyone give
 me some feedback here on whether or not I can and should move forward on
 this?
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


>>>
>>> ___
>>> webkit-dev mailing list
>>> webkit-dev@lists.webkit.org
>>> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>>>
>>>
>>
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>
>


-- 


*Sencha*
Jarred Nicholls, Senior Software Architect
@jarrednicholls

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] getComputedStyle returns percentage values for left / right / top / bottom

2011-11-21 Thread 王显著
Sorry my previous post might be misleading. Just verified that in the CSSOM
draft the list of properties that getComputedStyle() may return the used
value doesn't include left/right/top/bottom. That is, according to the
draft, WebKit's current behavior about left/right/top/bottom is correct.

On Tue, Nov 22, 2011 at 10:50 AM, Xianzhu Wang (王显著) <
wangxian...@chromium.org> wrote:

> A related bug is: https://bugs.webkit.org/show_bug.cgi?id=42799
> It's about the problem of pixelXXX CSS properties. Is these pixelXXX
> properties a workaround of bug 29084? I think after we fix 29084 we can
> drop the pixelXXX properties.
>
> The current draft CSSOM says getComputedStyle() should return the resolved
> values, and for width, height etc., "if the property applies to the element
> or pseudo-element and the resolved value of the 'display' property is not
> none, the resolved value is the used value. Otherwise the resolved value is
> the computed value."
>
> On Tue, Nov 22, 2011 at 8:02 AM, Ryosuke Niwa  wrote:
>
>> Per bugzilla discusion, FF, IE, and Opera all return pixel values so we
>> should just fix this bug.
>>
>> - Ryosuke
>>
>> On Mon, Nov 21, 2011 at 3:19 PM, Mike Sherov wrote:
>>
>>> I'd like to begin working on this bug (
>>> https://bugs.webkit.org/show_bug.cgi?id=29084), and making sure that
>>> getComputedStyle() always returns a pixel value "used value" when expected,
>>> although I suspect this is a controversial change, and
>>> http://www.webkit.org/coding/contributing.html#writecode says to ask in
>>> this mailing list before making a controversial change. Can anyone give me
>>> some feedback here on whether or not I can and should move forward on this?
>>> ___
>>> webkit-dev mailing list
>>> webkit-dev@lists.webkit.org
>>> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>>>
>>>
>>
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org
>> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>>
>>
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] getComputedStyle returns percentage values for left / right / top / bottom

2011-11-21 Thread 王显著
A related bug is: https://bugs.webkit.org/show_bug.cgi?id=42799
It's about the problem of pixelXXX CSS properties. Is these pixelXXX
properties a workaround of bug 29084? I think after we fix 29084 we can
drop the pixelXXX properties.

The current draft CSSOM says getComputedStyle() should return the resolved
values, and for width, height etc., "if the property applies to the element
or pseudo-element and the resolved value of the 'display' property is not
none, the resolved value is the used value. Otherwise the resolved value is
the computed value."

On Tue, Nov 22, 2011 at 8:02 AM, Ryosuke Niwa  wrote:

> Per bugzilla discusion, FF, IE, and Opera all return pixel values so we
> should just fix this bug.
>
> - Ryosuke
>
> On Mon, Nov 21, 2011 at 3:19 PM, Mike Sherov wrote:
>
>> I'd like to begin working on this bug (
>> https://bugs.webkit.org/show_bug.cgi?id=29084), and making sure that
>> getComputedStyle() always returns a pixel value "used value" when expected,
>> although I suspect this is a controversial change, and
>> http://www.webkit.org/coding/contributing.html#writecode says to ask in
>> this mailing list before making a controversial change. Can anyone give me
>> some feedback here on whether or not I can and should move forward on this?
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org
>> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>>
>>
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] getComputedStyle returns percentage values for left / right / top / bottom

2011-11-21 Thread Ryosuke Niwa
Per bugzilla discusion, FF, IE, and Opera all return pixel values so we
should just fix this bug.

- Ryosuke

On Mon, Nov 21, 2011 at 3:19 PM, Mike Sherov  wrote:

> I'd like to begin working on this bug (
> https://bugs.webkit.org/show_bug.cgi?id=29084), and making sure that
> getComputedStyle() always returns a pixel value "used value" when expected,
> although I suspect this is a controversial change, and
> http://www.webkit.org/coding/contributing.html#writecode says to ask in
> this mailing list before making a controversial change. Can anyone give me
> some feedback here on whether or not I can and should move forward on this?
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
>
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] getComputedStyle returns percentage values for left / right / top / bottom

2011-11-21 Thread Mike Sherov
I'd like to begin working on this bug (
https://bugs.webkit.org/show_bug.cgi?id=29084), and making sure that
getComputedStyle() always returns a pixel value "used value" when expected,
although I suspect this is a controversial change, and
http://www.webkit.org/coding/contributing.html#writecode says to ask in
this mailing list before making a controversial change. Can anyone give me
some feedback here on whether or not I can and should move forward on this?
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev