| Index: client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
|
| index 53433f8fe22d5297371d55225851677c42301967..09e5da963ccceacf8b23438720b8294a1306e6d5 100644
|
| --- a/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -class _ShadowRootWrappingImplementation extends _NodeWrappingImplementation implements ShadowRoot {
|
| +class _ShadowRootWrappingImplementation extends _DocumentFragmentWrappingImplementation implements ShadowRoot {
|
| _ShadowRootWrappingImplementation() : super() {}
|
|
|
| static create__ShadowRootWrappingImplementation() native {
|
| @@ -14,5 +14,25 @@ class _ShadowRootWrappingImplementation extends _NodeWrappingImplementation impl
|
| Element get host() { return _get_host(this); }
|
| static Element _get_host(var _this) native;
|
|
|
| + Element getElementById(String elementId) {
|
| + return _getElementById(this, elementId);
|
| + }
|
| + static Element _getElementById(receiver, elementId) native;
|
| +
|
| + NodeList getElementsByClassName(String className) {
|
| + return _getElementsByClassName(this, className);
|
| + }
|
| + static NodeList _getElementsByClassName(receiver, className) native;
|
| +
|
| + NodeList getElementsByTagName(String tagName) {
|
| + return _getElementsByTagName(this, tagName);
|
| + }
|
| + static NodeList _getElementsByTagName(receiver, tagName) native;
|
| +
|
| + NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
|
| + return _getElementsByTagNameNS(this, namespaceURI, localName);
|
| + }
|
| + static NodeList _getElementsByTagNameNS(receiver, namespaceURI, localName) native;
|
| +
|
| String get typeName() { return "ShadowRoot"; }
|
| }
|
|
|