svg-in-ot-bitmap-1-ref.html (615B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>SVG-in-OT bitmap issue</title> 6 <style> 7 @font-face { 8 font-family: test; 9 src: url("resources/svg-bitmap.ttf"); 10 } 11 span { 12 white-space: pre; 13 } 14 .a { 15 background: red; 16 } 17 .b { 18 background: yellow; 19 } 20 .c { 21 background: blue; 22 } 23 </style> 24 </head> 25 <body> 26 <div style="font: 32px/1 test, serif"> 27 x <span class=a> </span><span class=b> </span><span class=c> </span> x 28 </div> 29 </body> 30 </html>