| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |