[Bug 22313] New: unicode-range is incorrectly formatted

https://www.w3.org/Bugs/Public/show_bug.cgi?id=22313

            Bug ID: 22313
           Summary: unicode-range is incorrectly formatted
    Classification: Unclassified
           Product: CSSValidator
           Version: CSS Validator
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: CSS 3
          Assignee: dave.null@w3.org
          Reporter: chris@improbable.org
        QA Contact: www-validator-cvs@w3.org

With a font declaration which uses unicode-range with more than a single value,
the displayed font format will repeat the first value n times rather than
displaying the subsequent values:


@font-face {
  font-family: "Noto Sans";
  src: local("NotoSansArmenian"), local("Noto Sans Armenian"),
url(NotoSansArmenian-Regular.woff) format("woff");
  unicode-range: U+530-58F, U+FB13-FB17;
}

the validation report will display:

Valid CSS information
@font-face {
font-family : '"Noto Sans"';
src : local("NotoSansArmenian"), local("Noto Sans Armenian"),
url(NotoSansArmenian-Regular.woff) format("woff");
unicode-range : U+530-58F, U+530-58F;
}

It also appears that the font-family declaration is incorrectly double-quoted.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Saturday, 8 June 2013 20:03:55 UTC