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

Unified Diff: lib/src/backend/test_platform.dart

Issue 1062683004: Preliminary safari support. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Polish Created 5 years, 8 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 | « README.md ('k') | lib/src/executable.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/backend/test_platform.dart
diff --git a/lib/src/backend/test_platform.dart b/lib/src/backend/test_platform.dart
index f2577d486f7b30921bbecd85cc6141e5859ca369..d311d69296dd621d311454de561ef8bc2b69a230 100644
--- a/lib/src/backend/test_platform.dart
+++ b/lib/src/backend/test_platform.dart
@@ -36,9 +36,13 @@ class TestPlatform {
static const TestPlatform firefox = const TestPlatform._("Firefox", "firefox",
isBrowser: true, isJS: true);
+ /// Apple Safari.
+ static const TestPlatform safari = const TestPlatform._("Safari", "safari",
+ isBrowser: true, isJS: true);
+
/// A list of all instances of [TestPlatform].
static const List<TestPlatform> all =
- const [vm, dartium, contentShell, chrome, phantomJS, firefox];
+ const [vm, dartium, contentShell, chrome, phantomJS, firefox, safari];
/// Finds a platform by its identifier string.
///
« no previous file with comments | « README.md ('k') | lib/src/executable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698