Chromium Code Reviews| Index: pkg/unittest/lib/html_config.dart |
| =================================================================== |
| --- pkg/unittest/lib/html_config.dart (revision 26163) |
| +++ pkg/unittest/lib/html_config.dart (working copy) |
| @@ -132,6 +132,9 @@ |
| } |
| void onInit() { |
| + var meta = query('meta[name="dart.unittest"]'); |
| + formatStacks = meta == null ? true : |
| + !meta.content.contains('raw-stack-traces'); |
| _installHandlers(); |
| window.postMessage('unittest-suite-wait-for-done', '*'); |
| } |