| OLD | NEW |
| 1 <!-- This page is used to test that CSS resources are retrieved correctly by |
| 2 the PageSerializer. |
| 3 --> |
| 1 <html> | 4 <html> |
| 2 | |
| 3 <!-- This page is used to test that CSS resources are retrieved correctly by the | |
| 4 WebPageSerializer::generateSnapshot method | |
| 5 --> | |
| 6 | |
| 7 <head> | 5 <head> |
| 8 | 6 |
| 9 <link rel="stylesheet" type="text/css" href="link_styles.css" /> | 7 <link rel="stylesheet" type="text/css" href="link_styles.css" /> |
| 10 | 8 |
| 11 <style> | 9 <style> |
| 12 @import url('import_styles.css'); | 10 @import url('import_styles.css'); |
| 13 | 11 |
| 14 @font-face { | 12 @font-face { |
| 15 font-family: Chunkfive; | 13 font-family: Chunkfive; |
| 16 } | 14 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 <li>Red</li> | 99 <li>Red</li> |
| 102 <li>Yellow</li> | 100 <li>Yellow</li> |
| 103 <li>Blue</li> | 101 <li>Blue</li> |
| 104 <li>Green</li> | 102 <li>Green</li> |
| 105 <li>Red</li> | 103 <li>Red</li> |
| 106 </ol> | 104 </ol> |
| 107 | 105 |
| 108 </body> | 106 </body> |
| 109 | 107 |
| 110 </html> | 108 </html> |
| OLD | NEW |