| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index a7801e9554fc2a5606beb73926e21e80b439f3ff..5eae3622638316ba42e5b5ef5255219a077aab1b 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -22014,7 +22014,7 @@ class _ElementAttributeMap extends _AttributeMap {
|
| return keys.length;
|
| }
|
|
|
| - bool _matches(Node node) => node.$dom_namespaceURI == null;
|
| + bool _matches(Node node) => node.$dom_namespaceUri == null;
|
| }
|
|
|
| /**
|
| @@ -22052,7 +22052,7 @@ class _NamespacedAttributeMap extends _AttributeMap {
|
| return keys.length;
|
| }
|
|
|
| - bool _matches(Node node) => node.$dom_namespaceURI == _namespace;
|
| + bool _matches(Node node) => node.$dom_namespaceUri == _namespace;
|
| }
|
|
|
|
|
|
|