| Index: samples/third_party/dromaeo/Suites.dart
|
| diff --git a/samples/third_party/dromaeo/Suites.dart b/samples/third_party/dromaeo/Suites.dart
|
| index 7e6ad08d8df2d0cc8a86e84a1e0c358180df421d..bd5426ecc71c66396fa1f78d38328686be518b5e 100644
|
| --- a/samples/third_party/dromaeo/Suites.dart
|
| +++ b/samples/third_party/dromaeo/Suites.dart
|
| @@ -31,16 +31,15 @@ class Suites {
|
|
|
| // Library tags
|
| 'html': 'DOM Core Tests (dart:html)',
|
| - 'htmlidiomatic': 'DOM Core Tests (dart:html) Idiomatic',
|
| };
|
|
|
| static const _CORE_TEST_OPTIONS = const [
|
| // A list of valid combinations for core Dromaeo DOM tests.
|
| // Each item in the list is a pair of (platform x [variants]).
|
| const ['js', const ['']],
|
| - const ['dart', const ['html', 'htmlidiomatic']],
|
| - const ['frog', const ['html', 'htmlidiomatic']],
|
| - const ['dart2js', const ['html', 'htmlidiomatic']],
|
| + const ['dart', const ['html']],
|
| + const ['frog', const ['html']],
|
| + const ['dart2js', const ['html']],
|
| ];
|
|
|
| static const _CORE_SUITE_DESCRIPTIONS = const [
|
| @@ -72,6 +71,13 @@ class Suites {
|
| 'Traversing a DOM structure',
|
| const ['traverse'],
|
| _CORE_TEST_OPTIONS),
|
| + const SuiteDescription(
|
| + '../../../../../tests/html/dromaeo_smoke.html',
|
| + 'Smoke test',
|
| + const Origin('', ''),
|
| + 'Dromaeo no-op smoke test',
|
| + const ['nothing'],
|
| + _CORE_TEST_OPTIONS),
|
| ];
|
|
|
| // Mappings from original path to actual path given platform/library.
|
|
|