| Index: third_party/pkg/html5lib/test/dom_compat_test_definitions.dart
|
| diff --git a/third_party/pkg/html5lib/test/dom_compat_test_definitions.dart b/third_party/pkg/html5lib/test/dom_compat_test_definitions.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f1d83e7a99abacf431db094bc1446bb31e651db1
|
| --- /dev/null
|
| +++ b/third_party/pkg/html5lib/test/dom_compat_test_definitions.dart
|
| @@ -0,0 +1,10 @@
|
| +part of dom_compat_test;
|
| +
|
| +void registerDomCompatTests() {
|
| + group('Element', () {
|
| + test('outerHtml', () {
|
| + final element = new Element.tag('div');
|
| + expect(element.outerHtml, '<div></div>');
|
| + });
|
| + });
|
| +}
|
|
|