| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index 6668f1b5d1c57ce6da099bc33f429308a1d0ed9e..66fe0b1128b52017a9bdbbbd6b4c64a76feb7196 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -7244,7 +7244,7 @@ class _ElementImpl extends _NodeImpl implements Element {
|
|
|
| noSuchMethod(String name, List args) {
|
| if (dynamicUnknownElementDispatcher == null) {
|
| - throw new NoSuchMethodException(this, name, args);
|
| + throw new NoSuchMethodError(this, name, args);
|
| } else {
|
| return dynamicUnknownElementDispatcher(this, name, args);
|
| }
|
|
|