OLD | NEW |
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 Loading... |
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> |
OLD | NEW |