| Index: pkg/dev_compiler/test/codegen/lib/html/trusted_html_tree_sanitizer_test.dart
|
| diff --git a/pkg/dev_compiler/test/codegen/lib/html/trusted_html_tree_sanitizer_test.dart b/pkg/dev_compiler/test/codegen/lib/html/trusted_html_tree_sanitizer_test.dart
|
| index c03e39d4074b0463758069e809ff8f3799bc3fcd..3f9a534061e0aff50869859a9998db64320e853c 100644
|
| --- a/pkg/dev_compiler/test/codegen/lib/html/trusted_html_tree_sanitizer_test.dart
|
| +++ b/pkg/dev_compiler/test/codegen/lib/html/trusted_html_tree_sanitizer_test.dart
|
| @@ -6,14 +6,13 @@
|
| /// for prevent XSS or other attacks. If you suppress this, or parts of it
|
| /// please make it a critical bug and bring it to the attention of the
|
| /// dart:html maintainers.
|
| -library trusted_html_tree_sanitizer_test;
|
| -
|
| +import 'dart:js' as js;
|
| import 'dart:html';
|
| import 'dart:svg' as svg;
|
| -import 'package:unittest/unittest.dart';
|
| -import 'package:unittest/html_individual_config.dart';
|
| +
|
| +import 'package:expect/minitest.dart';
|
| +
|
| import 'utils.dart';
|
| -import 'dart:js' as js;
|
|
|
| var oldAdoptNode;
|
| var jsDocument;
|
| @@ -33,8 +32,6 @@ restoreOldAdoptNode() {
|
| }
|
|
|
| main() {
|
| - useHtmlIndividualConfiguration();
|
| -
|
| group('not_create_document_fragment', () {
|
| setUp(makeDocumentFragmentAdoptionThrow);
|
| tearDown(restoreOldAdoptNode);
|
|
|