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

Side by Side Diff: LayoutTests/fast/text/font-linux-normalize.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 function log(str) { 4 function log(str) {
5 var li = document.createElement("li"); 5 var li = document.createElement("li");
6 li.appendChild(document.createTextNode(str)); 6 li.appendChild(document.createTextNode(str));
7 var console = document.getElementById("console"); 7 var console = document.getElementById("console");
8 console.appendChild(li); 8 console.appendChild(li);
9 } 9 }
10 10
(...skipping 28 matching lines...) Expand all
39 //should be rendered as "\u0958\u0909 \u00e4" in html. 39 //should be rendered as "\u0958\u0909 \u00e4" in html.
40 assertEqual("devanagari + a with diaeresis", string, "\u0915\u093c\u0909\u00 09a\u0308"); 40 assertEqual("devanagari + a with diaeresis", string, "\u0915\u093c\u0909\u00 09a\u0308");
41 } 41 }
42 </script> 42 </script>
43 </head> 43 </head>
44 <body> 44 <body>
45 <div id="div">&#x915;&#x093c;&#x0909;&#x9;a&#x308;</div> 45 <div id="div">&#x915;&#x093c;&#x0909;&#x9;a&#x308;</div>
46 <ul id="console"></ul> 46 <ul id="console"></ul>
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698