[Webkit-unassigned] [Bug 34067] New: CSS rule containing an unclosed string is ignored.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 24 21:45:47 PST 2010


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

           Summary: CSS rule containing an unclosed string is ignored.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: yuzo at google.com


http://www.w3.org/TR/CSS21/syndata.html#parsing-errors
specifies how unclosed strings must be handled.

For example,

<style type="text/css">
p:before {
    content: 'Has not 
</style>

must be handled as if it were:

<style type="text/css">
p:before {
    content: 'Has not ';
}
</style>

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