Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: pkg/unittest/lib/html_config.dart

Issue 22859009: Changes to how we handle fancy stacks: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/unittest/lib/src/config.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/html_config.dart
===================================================================
--- pkg/unittest/lib/html_config.dart (revision 26539)
+++ pkg/unittest/lib/html_config.dart (working copy)
@@ -132,6 +132,11 @@
}
void onInit() {
+ // For Dart internal tests, we want to turn off stack frame
+ // filtering, which we do with this meta-header.
+ var meta = query('meta[name="dart.unittest"]');
+ filterStacks = meta == null ? true :
+ !meta.content.contains('full-stack-traces');
_installHandlers();
window.postMessage('unittest-suite-wait-for-done', '*');
}
« no previous file with comments | « no previous file | pkg/unittest/lib/src/config.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698