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