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

Unified Diff: client/html/frog/html_frog.dart

Issue 9689026: Regenerate DOM bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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:
View side-by-side diff with in-line comments
Download patch
Index: client/html/frog/html_frog.dart
diff --git a/client/html/frog/html_frog.dart b/client/html/frog/html_frog.dart
index 410121dac94a99512f0d67839a3bcf11686bb6d4..de6d1de652752606325491c6c4f6a39596385111 100644
--- a/client/html/frog/html_frog.dart
+++ b/client/html/frog/html_frog.dart
@@ -804,12 +804,6 @@ class _CSSPrimitiveValueImpl extends _CSSValueImpl implements CSSPrimitiveValue
static final int CSS_URI = 20;
- static final int CSS_VH = 27;
-
- static final int CSS_VMIN = 28;
-
- static final int CSS_VW = 26;
-
final int primitiveType;
_CounterImpl getCounterValue() native;
@@ -4656,6 +4650,8 @@ class _DocumentImpl extends _ElementImpl
_HeadElementImpl get head() native "return this.parentNode.head;";
+ int get height() native "return this.parentNode.height;";
+
String get lastModified() native "return this.parentNode.lastModified;";
String get preferredStylesheetSet() native "return this.parentNode.preferredStylesheetSet;";
@@ -4684,6 +4680,8 @@ class _DocumentImpl extends _ElementImpl
String get webkitVisibilityState() native "return this.parentNode.webkitVisibilityState;";
+ int get width() native "return this.parentNode.width;";
+
_RangeImpl caretRangeFromPoint(int x, int y) native "return this.parentNode.caretRangeFromPoint(x, y);";
_CDATASectionImpl createCDATASection(String data) native "return this.parentNode.createCDATASection(data);";
@@ -5222,6 +5220,13 @@ class _DynamicsCompressorNodeImpl extends _AudioNodeImpl implements DynamicsComp
final _AudioParamImpl threshold;
}
+
+class _EXTTextureFilterAnisotropicImpl implements EXTTextureFilterAnisotropic native "*EXTTextureFilterAnisotropic" {
+
+ static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
+
+ static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
+}
// 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.
@@ -6312,6 +6317,10 @@ class _FieldSetElementImpl extends _ElementImpl implements FieldSetElement nativ
final _FormElementImpl form;
+ String name;
+
+ final String type;
+
final String validationMessage;
final _ValidityStateImpl validity;
@@ -13011,6 +13020,8 @@ class _SelectElementImpl extends _ElementImpl implements SelectElement native "*
int selectedIndex;
+ final _HTMLCollectionImpl selectedOptions;
+
int size;
final String type;
@@ -13039,6 +13050,8 @@ class _ShadowElementImpl extends _ElementImpl implements ShadowElement native "*
class _ShadowRootImpl extends _DocumentFragmentImpl implements ShadowRoot native "*ShadowRoot" {
+ final _ElementImpl activeElement;
+
final _ElementImpl host;
String innerHTML;
@@ -13713,8 +13726,6 @@ class _TrackElementImpl extends _ElementImpl implements TrackElement native "*HT
static final int NONE = 0;
- bool isDefault;
-
String kind;
String label;
@@ -17045,12 +17056,6 @@ interface CSSPrimitiveValue extends CSSValue {
static final int CSS_URI = 20;
- static final int CSS_VH = 27;
-
- static final int CSS_VMIN = 28;
-
- static final int CSS_VW = 26;
-
final int primitiveType;
Counter getCounterValue();
@@ -20176,6 +20181,8 @@ interface Document extends HtmlElement {
final HeadElement head;
+ final int height;
+
final String lastModified;
final String preferredStylesheetSet;
@@ -20200,6 +20207,8 @@ interface Document extends HtmlElement {
final String webkitVisibilityState;
+ final int width;
+
Range caretRangeFromPoint(int x, int y);
CDATASection createCDATASection(String data);
@@ -20387,6 +20396,18 @@ interface DynamicsCompressorNode extends AudioNode {
final AudioParam threshold;
}
+// 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.
+
+interface EXTTextureFilterAnisotropic {
+
+ static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
+
+ static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
+}
// Copyright (c) 2011, 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.
@@ -21221,6 +21242,10 @@ interface FieldSetElement extends Element {
final FormElement form;
+ String name;
+
+ final String type;
+
final String validationMessage;
final ValidityState validity;
@@ -27164,6 +27189,8 @@ interface SelectElement extends Element {
int selectedIndex;
+ final HTMLCollection selectedOptions;
+
int size;
final String type;
@@ -27204,6 +27231,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
ShadowRoot(Element host);
+ final Element activeElement;
+
final Element host;
String innerHTML;
@@ -27941,8 +27970,6 @@ interface TrackElement extends Element {
static final int NONE = 0;
- bool isDefault;
-
String kind;
String label;

Powered by Google App Engine
This is Rietveld 408576698