| Index: lib/html/src/XMLElementWrappingImplementation.dart
|
| diff --git a/lib/html/src/XMLElementWrappingImplementation.dart b/lib/html/src/XMLElementWrappingImplementation.dart
|
| index f4a7fd756be0d33260df40a92a9898236778f4ed..14aad79acd8f3ebd5f78c982fe13e2148135cd8b 100644
|
| --- a/lib/html/src/XMLElementWrappingImplementation.dart
|
| +++ b/lib/html/src/XMLElementWrappingImplementation.dart
|
| @@ -157,7 +157,7 @@ class XMLElementWrappingImplementation extends ElementWrappingImplementation
|
| int get tabIndex() {
|
| try {
|
| return Math.parseInt(_attr('tabIndex'));
|
| - } catch (FormatException e) {
|
| + } on FormatException catch (e) {
|
| return 0;
|
| }
|
| }
|
|
|