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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 12086066: Removing dart:html APIs which were deprecated in M2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 4e05772a70d3d1548021e3604de9df55aef9220f..262e34499f3647b3c1c4a30378f5284aa2b2664c 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -7620,15 +7620,6 @@ class DocumentFragment extends Node {
factory DocumentFragment.svg(String svgContent) =>
_DocumentFragmentFactoryProvider.createDocumentFragment_svg(svgContent);
- @deprecated
- List<Element> get elements => this.children;
-
- // TODO: The type of value should be Collection<Element>. See http://b/5392897
- @deprecated
- void set elements(value) {
- this.children = value;
- }
-
List<Element> _children;
List<Element> get children {
@@ -9308,27 +9299,6 @@ abstract class Element extends Node implements ElementTraversal {
}
/**
- * Deprecated, use innerHtml instead.
- */
- @deprecated
- String get innerHTML => this.innerHtml;
- @deprecated
- void set innerHTML(String value) {
- this.innerHtml = value;
- }
-
- @deprecated
- void set elements(Collection<Element> value) {
- this.children = value;
- }
-
- /**
- * Deprecated, use [children] instead.
- */
- @deprecated
- List<Element> get elements => this.children;
-
- /**
* List of the direct children of this element.
*
* This collection can be used to add and remove elements from the document.
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698