Index: tools/testing/dart/browser_controller.dart |
diff --git a/tools/testing/dart/browser_controller.dart b/tools/testing/dart/browser_controller.dart |
index 50e14c15b7bfa889a97771d528b215edfa699f7d..ce5ad9053234ffe786aaa004c38e2778424c2ed7 100644 |
--- a/tools/testing/dart/browser_controller.dart |
+++ b/tools/testing/dart/browser_controller.dart |
@@ -502,8 +502,14 @@ class Chrome extends Browser { |
"--disable-extensions", |
"--disable-popup-blocking", |
"--bwsi", |
- "--no-first-run" |
+ "--no-first-run", |
]; |
+ |
+ // TODO(rnystrom): If you want Chrome to spawn with the dev tools tab |
+ // open, which is handy for debugging, add: |
+ // |
+ // --auto-open-devtools-for-tabs |
+ |
return startBrowserProcess(_binary, args, |
environment: _getEnvironment()); |
}); |