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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/case-sensitive-004.xhtml

Issue 1854503002: Add meta charset tag to unlabelled utf-8 files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop two more files unaffected by utf-8 label Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head> 3 <head><meta charset="utf-8"/>
4 <title>CSS Test: Case-sensitivity of :lang() arguments</title> 4 <title>CSS Test: Case-sensitivity of :lang() arguments</title>
5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.ne t/"/> 5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.ne t/"/>
6 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters"/> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters"/>
7 <meta name="assert" content="The argument to :lang() is ASCII case-insensitive ."/> 7 <meta name="assert" content="The argument to :lang() is ASCII case-insensitive ."/>
8 <style type="text/css"> 8 <style type="text/css">
9 .test-folding { color: red; } 9 .test-folding { color: red; }
10 10
11 :lang(en) { 11 :lang(en) {
12 color: green; 12 color: green;
13 } 13 }
(...skipping 23 matching lines...) Expand all
37 <p xml:lang="fR">This sentence must be green.</p> 37 <p xml:lang="fR">This sentence must be green.</p>
38 </div> 38 </div>
39 <div class="test-unicode"> 39 <div class="test-unicode">
40 <p xml:lang="kl">This sentence must be green.</p> 40 <p xml:lang="kl">This sentence must be green.</p>
41 <p lang="KL">This sentence must be green.</p> 41 <p lang="KL">This sentence must be green.</p>
42 <p xml:lang="fi">This sentence must be green.</p> 42 <p xml:lang="fi">This sentence must be green.</p>
43 <p lang="FI">This sentence must be green.</p> 43 <p lang="FI">This sentence must be green.</p>
44 </div> 44 </div>
45 </body> 45 </body>
46 </html> 46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698