| OLD | NEW |
| 1 function FindProxyForURL(url, host) { | 1 function FindProxyForURL(url, host) { |
| 2 return "PROXY success:80"; | 2 return "PROXY success:80"; |
| 3 } | 3 } |
| 4 | 4 |
| 5 // We end the script with a comment (and no trailing newline). | 5 // We end the script with a comment (and no trailing newline). |
| 6 // This used to cause problems, because internally ProxyResolverV8 | 6 // This used to cause problems, because internally ProxyResolverV8 |
| 7 // would append some functions to the script; the first line of | 7 // would append some functions to the script; the first line of |
| 8 // those extra functions was being considered part of the comment. | 8 // those extra functions was being considered part of the comment. |
| OLD | NEW |