Bug 19712 - Validation error in webkit.org/css/main.css
Summary: Validation error in webkit.org/css/main.css
Status: CLOSED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Website (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac OS X 10.5
: P2 Minor
Assignee: Robert Blaut
URL: http://webkit.org/css/main.css
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-22 11:47 PDT by quark67
Modified: 2008-07-27 11:54 PDT (History)
1 user (show)

See Also:


Attachments
patch for the issue (1.11 KB, patch)
2008-07-17 06:23 PDT, Robert Blaut
eric: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description quark67 2008-06-22 11:47:30 PDT
With http://jigsaw.w3.org/css-validator I check http://webkit.org/css/main.css
and as result this give:

line 8 : body  - Family names containing whitespace should be quoted. 
line 8 contain :
font-family: Lucida Grande, Verdana, Arial;)

line 188 :  .code  - Value Error : line-height initial is not a line-height value : initial
line arround 188 contain :
.code {
    margin-left: 2em;
    font-size: 90%;
    line-height: initial;
}
Comment 1 Alexey Proskuryakov 2008-06-25 03:24:10 PDT
I believe that initial is valid per CSS3, but it won't hurt to add quotation marks around the font name, so confirming.
Comment 2 Robert Blaut 2008-07-17 06:23:30 PDT
Created attachment 22337 [details]
patch for the issue
Comment 3 Eric Seidel (no email) 2008-07-20 23:24:38 PDT
Comment on attachment 22337 [details]
patch for the issue

Looks fine.
Comment 4 Mark Rowe (bdash) 2008-07-26 22:53:23 PDT
Landed in r35395.