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