Chromium Code Reviews| 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); |
|
ahe
2012/09/11 08:43:56
I think this is a generated test. Coordinate with
Lasse Reichstein Nielsen
2012/09/11 11:35:41
I'll keep the change and tell them to update the g
|
| + throw new NoSuchMethodError(this, name, args); |
| } else { |
| return dynamicUnknownElementDispatcher(this, name, args); |
| } |