[Webkit-unassigned] [Bug 7987] Inpspector displays incorrect summary for padding information

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Sep 27 15:04:43 PDT 2009


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





--- Comment #5 from Timothy Hatcher <timothy at hatcher.name>  2009-09-27 15:04:43 PDT ---
(In reply to comment #4)
> Created an attachment (id=40204)
 --> (https://bugs.webkit.org/attachment.cgi?id=40204) [details]
> Test case with separate cases of specifying padding top and padding left.
> 
> In r48794, the results are slightly different than described previously. I am
> adding this test case so that both cases of specifying padding top and
> specifying padding left are shown.
> 
> In the case of specifying the padding and the padding top (padding: 20px;
> padding-top: 35px;), the following is displayed in the Web Inspector:
> 
> -> padding: 35px;
>       padding-top: 35px;
> 
> and when expanded:
> 
> padding: 35px;
>     padding-right: 20px;
>     padding-bottom: 20px;
>     padding-left: 20px;
> padding-top: 35px;
> 
> In the case of specifying the padding and the padding left (padding: 20px;
> padding-left: 5px;), the following is displayed in the Web Inspector:
> 
> -> padding: 20px 5px;
>       padding-left: 5px;
> 
> and when expanded:
> 
> padding: 20px 5px;
>     padding-top: 20px;
>     padding-right: 20px;
>     padding-bottom: 20px;
> padding-left: 5px;
> 
> I don't believe this is less confusing though. Thoughts on a better display?

I think what is expected is:

padding: --20px-- 20px 20px 20px;
   --padding-top: 20px;--
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
padding-top: 35px;

Where "--" is striked out.

-- 
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