Chromium Code Reviews| Index: tools/testing/dart/test_suite.dart |
| =================================================================== |
| --- tools/testing/dart/test_suite.dart (revision 5351) |
| +++ tools/testing/dart/test_suite.dart (working copy) |
| @@ -698,7 +698,7 @@ |
| String getHtmlName(String filename) { |
| return filename.replaceAll('/', '_').replaceAll(':', '_') |
| - + configuration['component'] + '.html'; |
| + .replaceAll('\\', '_') + configuration['component'] + '.html'; |
|
Bill Hesse
2012/03/13 00:26:22
OK, but I don't know why we don't fix filename whe
Emily Fortuna
2012/03/13 00:33:51
I'm fine with fixing it initially -- it's just all
|
| } |
| String get dumpRenderTreeFilename() { |