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

Side by Side Diff: LayoutTests/css3/font-feature-settings-parsing.html

Issue 58533003: Move fast/js/resources files to resources. (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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 </style> 119 </style>
120 <style> 120 <style>
121 @font-face { 121 @font-face {
122 -webkit-font-feature-settings: 'liga'; 122 -webkit-font-feature-settings: 'liga';
123 } 123 }
124 124
125 @font-face { 125 @font-face {
126 -webkit-font-feature-settings: aaaaa; 126 -webkit-font-feature-settings: aaaaa;
127 } 127 }
128 </style> 128 </style>
129 <script src="../fast/js/resources/js-test-pre.js"></script> 129 <script src="../resources/js-test.js"></script>
130 </head> 130 </head>
131 <body> 131 <body>
132 <div id="valid_normal"></div> 132 <div id="valid_normal"></div>
133 <div id="valid_value_1"></div> 133 <div id="valid_value_1"></div>
134 <div id="valid_value_2"></div> 134 <div id="valid_value_2"></div>
135 <div id="valid_value_on"></div> 135 <div id="valid_value_on"></div>
136 <div id="valid_value_off"></div> 136 <div id="valid_value_off"></div>
137 <div id="valid_value_omit"></div> 137 <div id="valid_value_omit"></div>
138 <div id="valid_valuelist"></div> 138 <div id="valid_valuelist"></div>
139 <div id="valid_singlequote"></div> 139 <div id="valid_singlequote"></div>
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 </body> 219 </body>
220 </html> 220 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/flexbox/flexitem-no-margin-collapsing.html ('k') | LayoutTests/css3/supports.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698