Changeset 181900 in webkit
- Timestamp:
- Mar 24, 2015, 12:56:34 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/css/attribute-selector-case-insensitive-expected.txt (added)
-
LayoutTests/fast/css/attribute-selector-case-insensitive.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/css/CSSGrammar.y.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r181897 r181900 1 2015-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 1 14 2015-03-24 Yoav Weiss <yoav@yoav.ws> 2 15 -
trunk/Source/WebCore/ChangeLog
r181899 r181900 1 2015-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 1 14 2015-03-24 Dean Jackson <dino@apple.com> 2 15 -
trunk/Source/WebCore/css/CSSGrammar.y.in
r181197 r181900 1278 1278 1279 1279 attrib_flags: 1280 #if ENABLE_CSS_SELECTORS_LEVEL41281 1280 IDENT maybe_space { 1282 1281 if (UNLIKELY($1.length() != 1 || !isASCIIAlphaCaselessEqual($1[0], 'i'))) … … 1285 1284 } 1286 1285 | 1287 #endif1288 1286 /* empty */ { 1289 1287 $$ = false;
Note:
See TracChangeset
for help on using the changeset viewer.