Chromium Code Reviews| Index: pkg/third_party/html5lib/test/dom_compat_test_definitions.dart |
| diff --git a/pkg/third_party/html5lib/test/dom_compat_test_definitions.dart b/pkg/third_party/html5lib/test/dom_compat_test_definitions.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f1d83e7a99abacf431db094bc1446bb31e651db1 |
| --- /dev/null |
| +++ b/pkg/third_party/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>'); |
| + }); |
| + }); |
| +} |