Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 Tests workspace mappings | 1 Tests workspace mappings |
| 2 | 2 |
| 3 url http://www.example.com/index.html is not mapped. | 3 url http://www.example.com/index.html is not mapped. |
| 4 url http://localhost/index.html is mapped. | 4 url http://localhost/index.html is mapped. |
| 5 url http://localhost/foo/index.html is mapped. | 5 url http://localhost/foo/index.html is mapped. |
| 6 url https://localhost/index.html is not mapped. | 6 url https://localhost/index.html is not mapped. |
| 7 | 7 |
| 8 url http://www.example.com/index.html is mapped to null | 8 url http://www.example.com/index.html is mapped to null |
| 9 url http://localhost/index.html is mapped to file:///var/www/localhost/index .html | 9 url http://localhost/index.html is mapped to null |
|
dgozman
2016/09/23 23:03:21
suspicicous
lushnikov
2016/09/24 00:30:50
This happens for the same reason as the rest of th
dgozman
2016/09/24 02:34:34
I see. But this means uiSourceCodeForURL(url) retu
| |
| 10 url http://localhost/foo/index.html is mapped to null | 10 url http://localhost/foo/index.html is mapped to null |
| 11 url https://localhost/index.html is mapped to null | 11 url https://localhost/index.html is mapped to null |
| 12 | 12 |
| 13 path file:///home/example.com / foo/index.html is mapped to null | 13 path file:///home/example.com / foo/index.html is mapped to null |
| 14 path file:///home/example.com / index.html is mapped to null | 14 path file:///home/example.com / index.html is mapped to null |
| 15 path file:///var/www / localhost/index.html is mapped to http://localhost/in dex.html | 15 path file:///var/www / localhost/index.html is mapped to http://localhost/in dex.html |
| 16 path file:///var/www / localhost/foo/index.html is mapped to http://localhos t/foo/index.html | 16 path file:///var/www / localhost/foo/index.html is mapped to http://localhos t/foo/index.html |
| 17 path file:///home/foo / index.html is mapped to null | 17 path file:///home/foo / index.html is mapped to null |
| 18 | 18 |
| OLD | NEW |