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

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

Issue 11734022: Added simple functionality to remove interfaces from HTML lib. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 12 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
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 bce616c820c13fba5a7ae93bdb8977eecd0b7795..1bb301d98b8bfb08367330be4423ad9543dc1af1 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -307,106 +307,6 @@ class AnimationEvent extends Event {
// WARNING: Do not edit - generated code.
-/// @domName HTMLAppletElement
-class AppletElement extends _Element_Merged {
- AppletElement.internal() : super.internal();
-
-
- /** @domName HTMLAppletElement.align */
- String get align native "HTMLAppletElement_align_Getter";
-
-
- /** @domName HTMLAppletElement.align */
- void set align(String value) native "HTMLAppletElement_align_Setter";
-
-
- /** @domName HTMLAppletElement.alt */
- String get alt native "HTMLAppletElement_alt_Getter";
-
-
- /** @domName HTMLAppletElement.alt */
- void set alt(String value) native "HTMLAppletElement_alt_Setter";
-
-
- /** @domName HTMLAppletElement.archive */
- String get archive native "HTMLAppletElement_archive_Getter";
-
-
- /** @domName HTMLAppletElement.archive */
- void set archive(String value) native "HTMLAppletElement_archive_Setter";
-
-
- /** @domName HTMLAppletElement.code */
- String get code native "HTMLAppletElement_code_Getter";
-
-
- /** @domName HTMLAppletElement.code */
- void set code(String value) native "HTMLAppletElement_code_Setter";
-
-
- /** @domName HTMLAppletElement.codeBase */
- String get codeBase native "HTMLAppletElement_codeBase_Getter";
-
-
- /** @domName HTMLAppletElement.codeBase */
- void set codeBase(String value) native "HTMLAppletElement_codeBase_Setter";
-
-
- /** @domName HTMLAppletElement.height */
- String get height native "HTMLAppletElement_height_Getter";
-
-
- /** @domName HTMLAppletElement.height */
- void set height(String value) native "HTMLAppletElement_height_Setter";
-
-
- /** @domName HTMLAppletElement.hspace */
- String get hspace native "HTMLAppletElement_hspace_Getter";
-
-
- /** @domName HTMLAppletElement.hspace */
- void set hspace(String value) native "HTMLAppletElement_hspace_Setter";
-
-
- /** @domName HTMLAppletElement.name */
- String get name native "HTMLAppletElement_name_Getter";
-
-
- /** @domName HTMLAppletElement.name */
- void set name(String value) native "HTMLAppletElement_name_Setter";
-
-
- /** @domName HTMLAppletElement.object */
- String get object native "HTMLAppletElement_object_Getter";
-
-
- /** @domName HTMLAppletElement.object */
- void set object(String value) native "HTMLAppletElement_object_Setter";
-
-
- /** @domName HTMLAppletElement.vspace */
- String get vspace native "HTMLAppletElement_vspace_Getter";
-
-
- /** @domName HTMLAppletElement.vspace */
- void set vspace(String value) native "HTMLAppletElement_vspace_Setter";
-
-
- /** @domName HTMLAppletElement.width */
- String get width native "HTMLAppletElement_width_Getter";
-
-
- /** @domName HTMLAppletElement.width */
- void set width(String value) native "HTMLAppletElement_width_Setter";
-
-}
-// 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
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-
/// @domName DOMApplicationCache
class ApplicationCache extends EventTarget {
ApplicationCache.internal() : super.internal();
@@ -19420,6 +19320,8 @@ class SelectElement extends _Element_Merged {
/// @domName HTMLShadowElement
+@SupportedBrowser(SupportedBrowser.CHROME, '25')
+@Experimental()
class ShadowElement extends _Element_Merged {
ShadowElement.internal() : super.internal();

Powered by Google App Engine
This is Rietveld 408576698