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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/case-sensitive-003.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.1//EN" "http://www.w3.org/TR/xhtml11/ DTD/xhtml11.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/ DTD/xhtml11.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 pseudo-classes and pseudo-elements</title > 4 <title>CSS Test: Case-sensitivity of pseudo-classes and pseudo-elements</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="Pseudo-class and pseudo-element names are ASCII 7 <meta name="assert" content="Pseudo-class and pseudo-element names are ASCII
8 case-insensitive."/> 8 case-insensitive."/>
9 <style type="text/css"> 9 <style type="text/css">
10 * { color: red; } 10 * { color: red; }
11 *:before, *:after { color: red; } 11 *:before, *:after { color: red; }
12 12
13 p:FiRSt-cHIlD { 13 p:FiRSt-cHIlD {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <p>This sentence must be green.</p> 62 <p>This sentence must be green.</p>
63 <p><a href="">This sentence must be green.</a></p> 63 <p><a href="">This sentence must be green.</a></p>
64 <p><a href="unvisited:link">This sentence must be green.</a></p> 64 <p><a href="unvisited:link">This sentence must be green.</a></p>
65 <p lang="en">This sentence must be green.</p> 65 <p lang="en">This sentence must be green.</p>
66 <p class="flin">This sentence must be green.</p> 66 <p class="flin">This sentence must be green.</p>
67 <p class="flet">T<span>his sentence must be green.</span></p> 67 <p class="flet">T<span>his sentence must be green.</span></p>
68 <p class="bef"></p> 68 <p class="bef"></p>
69 <p class="af"></p> 69 <p class="af"></p>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698