| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <style> | 3 <style> |
| 4 @font-face { font-family: A; src: url(); } | 4 @font-face { font-family: A; src: url(); } |
| 5 #y { font-family: A; } | 5 #y { font-family: A; } |
| 6 #y:first-letter { content: "A"; } | 6 #y:first-letter { content: "A"; } |
| 7 </style> | 7 </style> |
| 8 <body> | 8 <body> |
| 9 <div id="y">EFGH</div> | 9 <div id="y">EFGH</div> |
| 10 </body> | 10 </body> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 document.execCommand('selectall'); | 24 document.execCommand('selectall'); |
| 25 | 25 |
| 26 // Let the font load to finish. | 26 // Let the font load to finish. |
| 27 setTimeout("finish()", 50); | 27 setTimeout("finish()", 50); |
| 28 </script> | 28 </script> |
| 29 <style> | 29 <style> |
| 30 #y:before { content: "ABCD"; } | 30 #y:before { content: "ABCD"; } |
| 31 </style> | 31 </style> |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |