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

Side by Side Diff: LayoutTests/fast/css/font-face-unicode-range-load.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 <script> 4 <script>
5 description('Tests that unicode-range descriptor is used to selectively download fonts that are used in document.'); 5 description('Tests that unicode-range descriptor is used to selectively download fonts that are used in document.');
6 6
7 window.jsTestIsAsync = true; 7 window.jsTestIsAsync = true;
8 8
9 var latin1Loaded = false; 9 var latin1Loaded = false;
10 var cyrillicLoaded = false; 10 var cyrillicLoaded = false;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 src: url('../../resources/Ahem.woff'); 54 src: url('../../resources/Ahem.woff');
55 unicode-range: U+0600-06FF; /* Arabic */ 55 unicode-range: U+0600-06FF; /* Arabic */
56 } 56 }
57 #test { 57 #test {
58 font-family: TestFont; 58 font-family: TestFont;
59 } 59 }
60 </style> 60 </style>
61 </head> 61 </head>
62 <body> 62 <body>
63 <p id="test">&#x41F;&#x440;&#x43E;&#x432;&#x435;&#x440;&#x43A;&#x430;</p> 63 <p id="test">&#x41F;&#x440;&#x43E;&#x432;&#x435;&#x440;&#x43A;&#x430;</p>
64 <script src="../js/resources/js-test-post.js"></script>
65 </body> 64 </body>
66 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698