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

Side by Side Diff: tools/testing/dart/browser_controller.dart

Issue 2081173002: Add suppression to test.dart for flaky content_shell crashes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | tools/testing/dart/status_file_parser.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 library browser; 4 library browser;
5 5
6 import "dart:async"; 6 import "dart:async";
7 import "dart:convert" show LineSplitter, UTF8, JSON; 7 import "dart:convert" show UTF8, JSON;
8 import "dart:core"; 8 import "dart:core";
9 import "dart:io"; 9 import "dart:io";
10 import "dart:math" show max, min; 10 import "dart:math" show min;
11 11
12 import 'android.dart'; 12 import 'android.dart';
13 import 'http_server.dart'; 13 import 'http_server.dart';
14 import 'path.dart'; 14 import 'path.dart';
15 import 'utils.dart'; 15 import 'utils.dart';
16 16
17 import 'reset_safari.dart' show 17 import 'reset_safari.dart' show
18 killAndResetSafari; 18 killAndResetSafari;
19 19
20 class BrowserOutput { 20 class BrowserOutput {
(...skipping 1828 matching lines...) Expand 10 before | Expand all | Expand 10 after
1849 </div> 1849 </div>
1850 <div id="embedded_iframe_div" class="test box"> 1850 <div id="embedded_iframe_div" class="test box">
1851 <iframe id="embedded_iframe"></iframe> 1851 <iframe id="embedded_iframe"></iframe>
1852 </div> 1852 </div>
1853 </body> 1853 </body>
1854 </html> 1854 </html>
1855 """; 1855 """;
1856 return driverContent; 1856 return driverContent;
1857 } 1857 }
1858 } 1858 }
OLDNEW
« no previous file with comments | « no previous file | tools/testing/dart/status_file_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698