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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/text/select-text-svgfont.html

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> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head><meta charset="utf-8"/>
4 <title>Test for per-character selection with SVG font</title> 4 <title>Test for per-character selection with SVG font</title>
5 <style> 5 <style>
6 6
7 @font-face { 7 @font-face {
8 font-family: 'ABCFont'; 8 font-family: 'ABCFont';
9 src: local('☺'), url('../custom/resources/ABCFont.svg#ABCFont') format('svg' ); 9 src: local('☺'), url('../custom/resources/ABCFont.svg#ABCFont') format('svg' );
10 font-weight: normal; 10 font-weight: normal;
11 font-style: normal; 11 font-style: normal;
12 } 12 }
13 13
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 var passfail = document.getElementById('passfail'); 77 var passfail = document.getElementById('passfail');
78 passfail.innerHTML = message; 78 passfail.innerHTML = message;
79 passfail.className = (passed ? "pass" : "fail"); 79 passfail.className = (passed ? "pass" : "fail");
80 testRunner.dumpAsText(); 80 testRunner.dumpAsText();
81 } 81 }
82 82
83 runTest(); 83 runTest();
84 </script> 84 </script>
85 </body> 85 </body>
86 </html> 86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698