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

Side by Side Diff: LayoutTests/fast/css/parsing-css-nonascii.html

Issue 1253403005: Implement CSS.escape (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix final test Created 5 years, 4 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 <html> 1 <html>
2 <head> 2 <head>
3 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 3 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
4 <style> 4 <style>
5 /* 5 /*
6 === Warning === 6 === Warning ===
7 7
8 This file intentionally contains scpecial characters which 8 This file intentionally contains special characters which
9 cannot be displayed by some text editors. Please 9 cannot be displayed by some text editors. Please
10 carefully edit the file. 10 carefully edit the file.
11 */ 11 */
12 12
13 #a127_\7F { color:red; } 13 #a127_\7F { color:red; }
14 #b127_ { color:green; } 14 #b127_ { color:green; }
15 15
16 #a128_\80 { color:red; } 16 #a128_\80 { color:red; }
17 #b128_€ { color:green; } 17 #b128_€ { color:green; }
18 18
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 <p>Test parsing of CSS escapes.</p> 57 <p>Test parsing of CSS escapes.</p>
58 58
59 <p id="message">TEST DID NOT COMPLETE</p> 59 <p id="message">TEST DID NOT COMPLETE</p>
60 60
61 <p>Rules from the stylesheet:</p> 61 <p>Rules from the stylesheet:</p>
62 62
63 <pre id="result"></pre> 63 <pre id="result"></pre>
64 64
65 <p>Expected result:</p> 65 <p>Expected result:</p>
66 66
67 <pre id="expected">#a127_\ { color: red; } 67 <pre id="expected">#a127_\7f { color: red; }
68 #a128_€ { color: red; } 68 #a128_€ { color: red; }
69 #b128_€ { color: green; } 69 #b128_€ { color: green; }
70 #a159_Ÿ { color: red; } 70 #a159_Ÿ { color: red; }
71 #b159_Ÿ { color: green; } 71 #b159_Ÿ { color: green; }
72 #a160_  { color: red; } 72 #a160_  { color: red; }
73 #b160_  { color: green; } 73 #b160_  { color: green; }
74 #a384_ƀ { color: red; } 74 #a384_ƀ { color: red; }
75 #b384_ƀ { color: green; } 75 #b384_ƀ { color: green; }
76 </pre> 76 </pre>
77 77
78 <script> 78 <script>
79 79
80 </script> 80 </script>
81 </body> 81 </body>
OLDNEW
« no previous file with comments | « LayoutTests/css3/escape-dom-api-expected.txt ('k') | LayoutTests/fast/css/parsing-css-nonascii-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698