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

Side by Side Diff: LayoutTests/css3/font-feature-settings-parsing.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 <style> 3 <style>
4 #valid_normal { 4 #valid_normal {
5 -webkit-font-feature-settings: normal; 5 -webkit-font-feature-settings: normal;
6 } 6 }
7 7
8 #valid_value_1 { 8 #valid_value_1 {
9 -webkit-font-feature-settings: "dlig" 1; 9 -webkit-font-feature-settings: "dlig" 1;
10 } 10 }
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 shouldBeEqualToString('parseResultOf("outer")', "'dlig' 1"); 209 shouldBeEqualToString('parseResultOf("outer")', "'dlig' 1");
210 shouldBeEqualToString('parseResultOf("inner")', "'dlig' 1"); 210 shouldBeEqualToString('parseResultOf("inner")', "'dlig' 1");
211 211
212 debug('- Tests @font-face.'); 212 debug('- Tests @font-face.');
213 var fontFaceRuleValid = document.styleSheets[1].cssRules[0].style['-webkit-font- feature-settings']; 213 var fontFaceRuleValid = document.styleSheets[1].cssRules[0].style['-webkit-font- feature-settings'];
214 var fontFaceRuleInvalid = document.styleSheets[1].cssRules[1].style['-webkit-fon t-feature-settings']; 214 var fontFaceRuleInvalid = document.styleSheets[1].cssRules[1].style['-webkit-fon t-feature-settings'];
215 shouldBeEqualToString('fontFaceRuleValid', "'liga' 1"); 215 shouldBeEqualToString('fontFaceRuleValid', "'liga' 1");
216 shouldBeEqualToString('fontFaceRuleInvalid', ""); 216 shouldBeEqualToString('fontFaceRuleInvalid', "");
217 217
218 </script> 218 </script>
219 <script src="../fast/js/resources/js-test-post.js"></script>
220 </body> 219 </body>
221 </html> 220 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/overflow-keep-scrollpos.html ('k') | LayoutTests/css3/font-weight.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698