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

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

Issue 298003004: Deprecate ShadowRoot.applyAuthorStyles (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 aefb15c62d875ca82d7c475c764d0f48e2e51fc4..4f8df2eebe0fbaa923c8c5969732df830eda2688 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -23345,9 +23345,10 @@ class ShadowRoot extends DocumentFragment native "ShadowRoot" {
@DocsEditable()
final Element activeElement;
+ @JSName('applyAuthorStyles')
@DomName('ShadowRoot.applyAuthorStyles')
@DocsEditable()
- bool applyAuthorStyles;
+ bool _applyAuthorStyles;
@DomName('ShadowRoot.host')
@DocsEditable()
@@ -23415,6 +23416,14 @@ class ShadowRoot extends DocumentFragment native "ShadowRoot" {
void set resetStyleInheritance(bool value) {
this._resetStyleInheritance = value;
}
+
+ @deprecated
+ bool get applyAuthorStyles => this._applyAuthorStyles;
+
+ @deprecated
+ void set applyAuthorStyles(bool value) {
+ this._applyAuthorStyles = 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