⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 181900 in webkit


Ignore:
Timestamp:
Mar 24, 2015, 12:56:34 PM (11 years ago)
Author:
benjamin@webkit.org
Message:

CSS Selectors Level 4: enable case-insensitive attribute matching by default
https://bugs.webkit.org/show_bug.cgi?id=142960

Reviewed by Andreas Kling.

Source/WebCore:

All open issues have been resolved, enable the feature by default.

Test: fast/css/attribute-selector-case-insensitive.html

  • css/CSSGrammar.y.in:

LayoutTests:

This test is imported from blink. That's the only test
they have for this feature.

  • fast/css/attribute-selector-case-insensitive-expected.txt: Added.
  • fast/css/attribute-selector-case-insensitive.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r181897 r181900  
     12015-03-24  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        CSS Selectors Level 4: enable case-insensitive attribute matching by default
     4        https://bugs.webkit.org/show_bug.cgi?id=142960
     5
     6        Reviewed by Andreas Kling.
     7
     8        This test is imported from blink. That's the only test
     9        they have for this feature.
     10
     11        * fast/css/attribute-selector-case-insensitive-expected.txt: Added.
     12        * fast/css/attribute-selector-case-insensitive.html: Added.
     13
    1142015-03-24  Yoav Weiss  <yoav@yoav.ws>
    215
  • trunk/Source/WebCore/ChangeLog

    r181899 r181900  
     12015-03-24  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        CSS Selectors Level 4: enable case-insensitive attribute matching by default
     4        https://bugs.webkit.org/show_bug.cgi?id=142960
     5
     6        Reviewed by Andreas Kling.
     7
     8        All open issues have been resolved, enable the feature by default.
     9
     10        Test: fast/css/attribute-selector-case-insensitive.html
     11
     12        * css/CSSGrammar.y.in:
     13
    1142015-03-24  Dean Jackson  <dino@apple.com>
    215
  • trunk/Source/WebCore/css/CSSGrammar.y.in

    r181197 r181900  
    12781278
    12791279attrib_flags:
    1280 #if ENABLE_CSS_SELECTORS_LEVEL4
    12811280    IDENT maybe_space {
    12821281        if (UNLIKELY($1.length() != 1 || !isASCIIAlphaCaselessEqual($1[0], 'i')))
     
    12851284    }
    12861285    |
    1287 #endif
    12881286    /* empty */ {
    12891287        $$ = false;
Note: See TracChangeset for help on using the changeset viewer.