| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index 60a87ffbb9cbae8114301a277253f05db9b62f38..83919dc13605883e572ac384a2437f173131d432 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -11237,10 +11237,22 @@ class _HTMLUListElementImpl extends _HTMLElementImpl implements UListElement {
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -// WARNING: Do not edit - generated code.
|
| +// Temporary dispatch hook to suppoer WebComponents.
|
| +static Function dynamicUnknownElementDispatcher;
|
|
|
| class _HTMLUnknownElementImpl extends _HTMLElementImpl implements UnknownElement {
|
|
|
| +
|
| + // Hooks to support custom WebComponents.
|
| + var dartObjectLocalStorage;
|
| +
|
| + noSuchMethod(String name, List args) {
|
| + if (dynamicUnknownElementDispatcher == null) {
|
| + throw new NoSuchMethodException(this, name, args);
|
| + } else {
|
| + return dynamicUnknownElementDispatcher(this, name, args);
|
| + }
|
| + }
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
|
|