| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 | 2 |
| 3 <!-- This page is used to test that CSS resources are retrieved correctly by the | 3 <!-- This page is used to test that CSS resources are retrieved correctly by the |
| 4 WebPageSerializer::generateSnapshot method | 4 WebPageSerializer::generateSnapshot method |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <head> | 7 <head> |
| 8 | 8 |
| 9 <link rel="stylesheet" type="text/css" href="link_styles.css" /> | 9 <link rel="stylesheet" type="text/css" href="link_styles.css" /> |
| 10 | 10 |
| 11 <style> | 11 <style> |
| 12 @import url('import_styles.css'); | 12 @import url('import_styles.css'); |
| 13 | 13 |
| 14 @font-face { | 14 @font-face { |
| 15 font-family: Chunkfive; | 15 font-family: Chunkfive; |
| 16 src: url('Chunkfive.otf'); | |
| 17 src: url('Chunkfive-webfont.eot) format('eot'); | |
| 18 } | 16 } |
| 19 | 17 |
| 20 #chunkfiveDiv { | 18 #chunkfiveDiv { |
| 21 font-family: Chunkfive, sans-serif; | 19 font-family: Chunkfive, sans-serif; |
| 22 } | 20 } |
| 23 </style> | 21 </style> |
| 24 | 22 |
| 25 <style> | 23 <style> |
| 26 #divBlue { | 24 #divBlue { |
| 27 background-image:url('blue_background.png'); | 25 background-image:url('blue_background.png'); |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 <li>Red</li> | 101 <li>Red</li> |
| 104 <li>Yellow</li> | 102 <li>Yellow</li> |
| 105 <li>Blue</li> | 103 <li>Blue</li> |
| 106 <li>Green</li> | 104 <li>Green</li> |
| 107 <li>Red</li> | 105 <li>Red</li> |
| 108 </ol> | 106 </ol> |
| 109 | 107 |
| 110 </body> | 108 </body> |
| 111 | 109 |
| 112 </html> | 110 </html> |
| OLD | NEW |