Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/attribute-selector-case-insensitive-ascii.html

Issue 1499933003: Use ASCII case-insensitive matching for attribute selectors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WTF -> StringTest Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/SelectorChecker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/attribute-selector-case-insensitive-ascii.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/attribute-selector-case-insensitive-ascii.html b/third_party/WebKit/LayoutTests/fast/css/attribute-selector-case-insensitive-ascii.html
new file mode 100644
index 0000000000000000000000000000000000000000..e3f553d10998f52c4f0f4b78ff8f8e76f14afcf3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/attribute-selector-case-insensitive-ascii.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<title>ASCII case-insensitive attribute selector matching</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<div id="element1" attr-exact="f&#x130;x"></div>
+<div id="element2" attr-exact="a&#x308;pple"></div>
+<div id="element3" attr-list="apelsin a&#x308;pple citron"></div>
+<div id="element4" attr-hyphen="a&#x308;ppel-cider"></div>
+<div id="element5" attr-begin="a&#x308;ppelcider"></div>
+<div id="element6" attr-end="gifta&#x308;pple"></div>
+<div id="element7" attr-contain="glasa&#x308;ppelkorg"></div>
+<script>
+function matchingId(selector) {
+ return (document.querySelector(selector) || { id: '' }).id;
+}
+test(function() {
+ assert_equals(matchingId('div[attr-exact="f\u0130x"]'), 'element1');
+ assert_equals(matchingId('div[attr-exact="FIX" i]'), '');
+ assert_equals(matchingId('div[attr-exact="A\u0308pple" i]'), 'element2');
+ assert_equals(matchingId('div[attr-list~="A\u0308pple" i]'), 'element3');
+ assert_equals(matchingId('div[attr-hyphen|="A\u0308ppel" i]'), 'element4');
+ assert_equals(matchingId('div[attr-begin^="A\u0308ppel" i]'), 'element5');
+ assert_equals(matchingId('div[attr-end$="A\u0308pple" i]'), 'element6');
+ assert_equals(matchingId('div[attr-contain*="A\u0308ppel" i]'), 'element7');
+});
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/SelectorChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698