[Webkit-unassigned] [Bug 146610] New: CSS rule with capital letter in <link rel=import> is ignored

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Jul 4 08:19:14 PDT 2015


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

            Bug ID: 146610
           Summary: CSS rule with capital letter in <link rel=import> is
                    ignored
    Classification: Unclassified
           Product: WebKit
           Version: 528+ (Nightly build)
          Hardware: PC
                OS: Windows 8
            Status: NEW
          Severity: Major
          Priority: P2
         Component: CSS
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: kivoloid at gmail.com

The CSS rules with capital letter in <link rel=import> seems to be ignored in WebKit. For example, the CSS rule ".foo .barWithCapital" is not applied to the document, unlike the other rules in the code below.

<!-- test.html -->
<html>
    <head>
        <link rel="import" href="/out/test-library.html">
    </head>
    <body>
        <div class="foo">
            <input class="barwithoutcapital barWithCapital" />
        </div>
    </body>
</html>

<!-- test-library.html -->
<style>
    .foo * {
        position: relative;
    }

    .foo input {
        top: 30px;
    }

    .foo .barWithCapital {
        left: 20px;
    }

    .foo .barwithoutcapital {
        border: 2px solid black;
    }
</style>

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150704/c55fa2cd/attachment-0001.html>


More information about the webkit-unassigned mailing list