Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <meta charset="utf-8"> | |
| 3 <title>Subresources collection</title> | |
| 4 <html> | |
| 5 <head> | |
| 6 <link rel="stylesheet" href="style.css"> | |
| 7 <style type="text/css"> | |
| 8 @font-face { | |
| 9 font-family: "Whatever"; | |
| 10 src: url(font.ttf) format("truetype"); | |
| 11 } | |
| 12 p.customfont { | |
| 13 font-family: "Whatever", Verdana; | |
| 14 } | |
| 15 </style> | |
| 16 </head> | |
| 17 <script src="script.js"></script> | |
| 18 <body> | |
| 19 <img src="image.png"> | |
| 20 <p class="customfont">Hello world!</p> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |