| Index: tests/html/custom_element_bindings_test.dart
|
| diff --git a/tests/html/custom_element_bindings_test.dart b/tests/html/custom_element_bindings_test.dart
|
| index 3b9d6a9262fea8fa23966766e76e694b94f885c1..346f5d47b114b95b69670d3e364ef0e7bd04d9b5 100644
|
| --- a/tests/html/custom_element_bindings_test.dart
|
| +++ b/tests/html/custom_element_bindings_test.dart
|
| @@ -32,7 +32,12 @@ customElementBindingsTest() {
|
|
|
| createTestHtml(s) {
|
| var div = new DivElement();
|
| - div.innerHtml = s;
|
| + /*div.setInnerHtml(s,
|
| + validator: new NodeValidatorBuilder.common()
|
| + ..allowCustomElement('my-custom-element', attributes: ['*']));
|
| + */
|
| + //div.setInnerHtml(s, treeSanitizer: new NullTreeSanitizer());
|
| + div.deprecatedInnerHtml = s;
|
| testDiv.append(div);
|
|
|
| for (var node in div.queryAll('*')) {
|
|
|