| Index: tests/html/cssstyledeclaration_test.dart
|
| diff --git a/tests/html/cssstyledeclaration_test.dart b/tests/html/cssstyledeclaration_test.dart
|
| index 45df00cd48409aca4d94e8573c9d699621f4996a..964e9f9437bad12e8c315a028a6b12d2502a0325 100644
|
| --- a/tests/html/cssstyledeclaration_test.dart
|
| +++ b/tests/html/cssstyledeclaration_test.dart
|
| @@ -7,6 +7,7 @@ import '../../pkg/unittest/lib/unittest.dart';
|
| import '../../pkg/unittest/lib/html_config.dart';
|
| import 'dart:html';
|
| import 'dart:async';
|
| +import 'utils.dart';
|
|
|
| main() {
|
| useHtmlConfiguration();
|
| @@ -103,7 +104,7 @@ main() {
|
| '<li class="bar" style="background-color: red; border-left: 10px;">'
|
| '<li class="baz" style="background-color: black;>'
|
| '<li class="baz classy" style="background-color: blue; ">'
|
| - '</ul>');
|
| + '</ul>', treeSanitizer: new NullTreeSanitizer());
|
| document.documentElement.children.add(listElement);
|
|
|
| var elements = document.queryAll('li');
|
| @@ -121,7 +122,7 @@ main() {
|
| '<li class="bar" style="background-color: red; border-left: 10px;">'
|
| '<li class="baz" style="background-color: black;>'
|
| '<li class="baz" id="wat" style="background-color: blue; ">'
|
| - '</ul>');
|
| + '</ul>', treeSanitizer: new NullTreeSanitizer());
|
| document.documentElement.children.add(listElement);
|
|
|
| var elements = document.queryAll('li');
|
|
|