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

Unified Diff: LayoutTests/fast/css/case-sensitive-004.xhtml

Issue 1129313003: Compare :lang value case-insensitive in ASCII range (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use EXPECT instead of ASSERT Created 5 years, 7 months 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 | LayoutTests/fast/css/case-sensitive-004-expected.xhtml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/case-sensitive-004.xhtml
diff --git a/LayoutTests/fast/css/case-sensitive-004.xhtml b/LayoutTests/fast/css/case-sensitive-004.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..d20a2243b01c3bbe1e40a09676eb1e6fda927bf0
--- /dev/null
+++ b/LayoutTests/fast/css/case-sensitive-004.xhtml
@@ -0,0 +1,46 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>CSS Test: Case-sensitivity of :lang() arguments</title>
+ <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters"/>
+ <meta name="assert" content="The argument to :lang() is ASCII case-insensitive."/>
+ <style type="text/css">
+ .test-folding { color: red; }
+
+ :lang(en) {
+ color: green;
+ }
+ :lang(FR) {
+ color: green;
+ }
+
+ /* test for ASCII (not UNICODE) case-insensitivity */
+ .test-unicode { color: green; }
+ :lang(fİ) {
+ color: red;
+ }
+ :lang(Fı) {
+ color: red;
+ }
+ :lang(&#x212a;l) {
+ color: red;
+ }
+ </style>
+
+ </head>
+ <body>
+ <div class="test-folding">
+ <p lang="En">This sentence must be green.</p>
+ <p xml:lang="eN">This sentence must be green.</p>
+ <p lang="fr">This sentence must be green.</p>
+ <p xml:lang="fR">This sentence must be green.</p>
+ </div>
+ <div class="test-unicode">
+ <p xml:lang="kl">This sentence must be green.</p>
+ <p lang="KL">This sentence must be green.</p>
+ <p xml:lang="fi">This sentence must be green.</p>
+ <p lang="FI">This sentence must be green.</p>
+ </div>
+ </body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/css/case-sensitive-004-expected.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698