Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 296723002: Dartium 35: Add a deprecated ShadowRoot.resetStyleInheritance (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: regen Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 9be513c9c9ec2a1ab7d986055f1f33dd8e5636e8..6208562d8a868a3b903d79802944ef6127fd04c5 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -23327,9 +23327,10 @@ class ShadowRoot extends DocumentFragment native "ShadowRoot" {
@Experimental() // untriaged
final ShadowRoot olderShadowRoot;
+ @JSName('resetStyleInheritance')
@DomName('ShadowRoot.resetStyleInheritance')
@DocsEditable()
- bool resetStyleInheritance;
+ bool _resetStyleInheritance;
@DomName('ShadowRoot.styleSheets')
@DocsEditable()
@@ -23369,6 +23370,14 @@ class ShadowRoot extends DocumentFragment native "ShadowRoot" {
static bool get supported =>
JS('bool', '!!(Element.prototype.webkitCreateShadowRoot)');
+
+ @deprecated
+ bool get resetStyleInheritance => this._resetStyleInheritance;
+
+ @deprecated
+ void set resetStyleInheritance(bool value) {
+ this._resetStyleInheritance = value;
+ }
}
// 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
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698