| Index: tests/html/custom/attribute_changed_callback_test.dart
|
| diff --git a/tests/html/custom/attribute_changed_callback_test.dart b/tests/html/custom/attribute_changed_callback_test.dart
|
| index 3eaa446f92d41c2033f3f40d1ea8ce277462ee79..71ffaec3fbc3bb06b4d8f32af34b26b49b2b70c1 100644
|
| --- a/tests/html/custom/attribute_changed_callback_test.dart
|
| +++ b/tests/html/custom/attribute_changed_callback_test.dart
|
| @@ -84,9 +84,7 @@ main() {
|
| b.attributes.remove('data-v');
|
| expect(B.invocations, ['data-v: x => null']);
|
| });
|
| - });
|
|
|
| - group('unsupported_on_polyfill', () {
|
| test('add, change ID', () {
|
| B.invocations = [];
|
|
|
| @@ -98,6 +96,12 @@ main() {
|
| b.attributes.remove('id');
|
| expect(B.invocations, ['id: x => null']);
|
| });
|
| + });
|
| +
|
| + group('unsupported_on_polyfill', () {
|
| +
|
| + // If these tests start passing, don't remove the status suppression. Move
|
| + // the tests to the fullYy_supported group.
|
|
|
| test('add, change classes', () {
|
| var b = new B();
|
|
|