Bug 11389

Summary: Attribute selectors should be case-sensitive by default and only be case-insensitive for certain attributes values
Product: WebKit Reporter: Niels Leenheer (HTML5test) <info>
Component: CSSAssignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: ap, webkit
Priority: P2    
Version: 420+   
Hardware: Mac   
OS: OS X 10.4   
URL: http://www.css3.info/selectors-test/
Bug Depends on:    
Bug Blocks: 11390    
Attachments:
Description Flags
minimal test case none

Description Niels Leenheer (HTML5test) 2006-10-23 03:53:12 PDT
Current behavoir:
The values of all attributes are compared by using a case-insensitive method.

Correct behavoir:
The CSS specification says that the case-sensitivity is determined by the document language. The HTML specification specifically tells us which attributes are case-sensitive, case-neutral or case-insensitive. Because attributes values are case-sensitive by default, we should treat unknown attributes in a case-sensitive way. 

The list of case-insensitive attributes is as follows:
lang, dir, http-equiv, text, link, vlink, alink, compact, align, frame, rules,
valign, scope, axis, nowrap, hreflang, rel, rev, charset, codetype, declare,
valuetype, shape, nohref, media, bgcolor, clear, color, face, noshade,
noresize, scrolling, target, method, enctype, accept-charset, accept, checked,
multiple, selected, disabled, readonly, language, defer, type

See also the following bugs:
http://bugzilla.mozilla.org/show_bug.cgi?id=357614
http://bugzilla.mozilla.org/show_bug.cgi?id=356936
http://bugs.kde.org/show_bug.cgi?id=135505

and

http://rakaz.nl/item/css_selector_bugs_case_sensitivity
Comment 1 Eric Seidel (no email) 2007-10-01 08:37:39 PDT
The code which defines this behaivor is in:

CSSParser::parseContent

            if (fname == "attr(") {
                if (args->size() != 1)
                    return false;
                Value* a = args->current();
                String attrName = domString(a->string);
                if (document()->isHTMLDocument())
                    attrName = attrName.lower();
                parsedValue = new CSSPrimitiveValue(attrName, CSSPrimitiveValue::CSS_ATTR);


Note that that code will be changed slightly by the patch attached to bug 15302, since the mathml.css file (which contains attr selectors) is parsed before there is any document() set.
Comment 2 Robert Blaut 2007-11-16 12:50:15 PST
Created attachment 17316 [details]
minimal test case
Comment 3 Robert Blaut 2008-01-28 08:37:28 PST
Is this bg already fixed? I don't see error behavior.
Comment 4 Alexey Proskuryakov 2008-01-28 09:15:43 PST

*** This bug has been marked as a duplicate of 15470 ***