| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index 0bf8034edb2ed7c456a3a52e394604548c795982..4c1a75ac3fc024c516763035e5138a04addf92ff 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -939,6 +939,12 @@ $if DART2JS
|
| '(#.createShadowRoot || #.webkitCreateShadowRoot).call(#)',
|
| this, this, this);
|
| }
|
| +
|
| + @DomName('Element.shadowRoot')
|
| + @SupportedBrowser(SupportedBrowser.CHROME, '25')
|
| + @Experimental()
|
| + ShadowRoot get shadowRoot =>
|
| + JS('ShadowRoot', '#.shadowRoot || #.webkitShadowRoot', this, this);
|
| $endif
|
|
|
|
|
|
|