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

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

Issue 11416023: Removed DivElement align property as it is obsolete. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerated. Created 8 years, 1 month 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/html/scripts/htmlrenamer.py » ('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 224e009186c7de63b9a25ab6140020c7872b8539..f7c0641f6433524f4eb4b6192b1549e49e324ad7 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -7997,14 +7997,6 @@ class DivElement extends _Element_Merged {
factory DivElement() => _Elements.createDivElement();
DivElement.internal(): super.internal();
-
- /** @domName HTMLDivElement.align */
- String get align native "HTMLDivElement_align_Getter";
-
-
- /** @domName HTMLDivElement.align */
- void set align(String value) native "HTMLDivElement_align_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
@@ -8485,7 +8477,7 @@ class DocumentFragment extends Node {
this.insertAdjacentText('beforeend', text);
}
- void addHTML(String text) {
+ void addHtml(String text) {
this.insertAdjacentHTML('beforeend', text);
}
@@ -9340,7 +9332,7 @@ class Element extends Node implements ElementTraversal {
* Parses the specified text as HTML and adds the resulting node after the
* last child of this.
*/
- void addHTML(String text) {
+ void addHtml(String text) {
this.insertAdjacentHTML('beforeend', text);
}
@@ -14944,10 +14936,6 @@ class LocalWindow extends EventTarget implements Window {
DOMApplicationCache get applicationCache native "DOMWindow_applicationCache_Getter";
- /** @domName DOMWindow.clientInformation */
- Navigator get clientInformation native "DOMWindow_clientInformation_Getter";
-
-
/** @domName DOMWindow.closed */
bool get closed native "DOMWindow_closed_Getter";
@@ -15252,10 +15240,6 @@ class LocalWindow extends EventTarget implements Window {
void print() native "DOMWindow_print_Callback";
- /** @domName DOMWindow.prompt */
- String prompt(String message, String defaultValue) native "DOMWindow_prompt_Callback";
-
-
/** @domName DOMWindow.releaseEvents */
void releaseEvents() native "DOMWindow_releaseEvents_Callback";
@@ -17600,7 +17584,7 @@ class Node extends EventTarget {
/** @domName Node.nodeType */
- int get $dom_nodeType native "Node_nodeType_Getter";
+ int get nodeType native "Node_nodeType_Getter";
/** @domName Node.ownerDocument */
@@ -28512,6 +28496,7 @@ abstract class History {
// 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.
+
abstract class CssClassSet implements Set<String> {
String toString() {
@@ -28641,6 +28626,7 @@ typedef void EventListener(Event event);
// 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.
+
class FilteredElementList implements List {
final Node _node;
final List<Node> _childNodes;
@@ -29706,6 +29692,7 @@ class _DocumentFragmentFactoryProvider {
// 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.
+
class _AudioContextFactoryProvider {
static AudioContext createAudioContext() => _createAudioContext();
static _createAudioContext([int numberOfChannels,
@@ -30302,11 +30289,11 @@ class _MessageTraverser {
return visitObject(x);
}
- abstract visitPrimitive(x);
- abstract visitList(List x);
- abstract visitMap(Map x);
- abstract visitSendPort(SendPort x);
- abstract visitSendPortSync(SendPortSync x);
+ visitPrimitive(x);
+ visitList(List x);
+ visitMap(Map x);
+ visitSendPort(SendPort x);
+ visitSendPortSync(SendPortSync x);
visitObject(Object x) {
// TODO(floitsch): make this a real exception. (which one)?
@@ -30457,7 +30444,7 @@ class _Deserializer {
return result;
}
- abstract deserializeSendPort(List x);
+ deserializeSendPort(List x);
deserializeObject(List x) {
// TODO(floitsch): Use real exception (which one?).
@@ -30469,6 +30456,7 @@ class _Deserializer {
// 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.
+
/**
* Checks to see if the mutation observer API is supported on the current
* platform.
@@ -30602,6 +30590,7 @@ class _Lists {
// 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.
+
// This API is exploratory.
spawnDomFunction(Function topLevelFunction) => _Utils.spawnDomFunctionImpl(topLevelFunction);
@@ -30631,6 +30620,7 @@ class TestRunner {
// 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.
+
class _Utils {
static List convertToList(List list) {
// FIXME: [possible optimization]: do not copy the array if Dart_IsArray is fine w/ it.
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698