| Index: pkg/polymer/test/build/linter_test.dart
|
| diff --git a/pkg/polymer/test/build/linter_test.dart b/pkg/polymer/test/build/linter_test.dart
|
| index 088642fc9849e42bc2be1e9dd6dc190a74aa2dac..6d5b883c8126588c54e0cb4f8c536caf6af464c3 100644
|
| --- a/pkg/polymer/test/build/linter_test.dart
|
| +++ b/pkg/polymer/test/build/linter_test.dart
|
| @@ -438,6 +438,14 @@ void main() {
|
| '''.replaceAll(' ', ''),
|
| }, []);
|
|
|
| + _testLinter('no longer warn about on-foo for auto-binding templates', {
|
| + 'a|lib/test.html': '''<html><body>
|
| + <template is="auto-binding-dart">
|
| + <div on-foo="{{something}}"></div>
|
| + </template>
|
| + '''.replaceAll(' ', ''),
|
| + }, []);
|
| +
|
| _testLinter('on-foo is only supported in polymer elements', {
|
| 'a|lib/test.html': '''<html><body>
|
| <div on-foo="something"></div>
|
|
|