| 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..07cf316d645f4ecc653768c0d73818e967063cd0 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;
|
| @@ -5222,6 +5216,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 +6313,10 @@ class _FieldSetElementImpl extends _ElementImpl implements FieldSetElement nativ
|
|
|
| final _FormElementImpl form;
|
|
|
| + String name;
|
| +
|
| + final String type;
|
| +
|
| final String validationMessage;
|
|
|
| final _ValidityStateImpl validity;
|
| @@ -13011,6 +13016,8 @@ class _SelectElementImpl extends _ElementImpl implements SelectElement native "*
|
|
|
| int selectedIndex;
|
|
|
| + final _HTMLCollectionImpl selectedOptions;
|
| +
|
| int size;
|
|
|
| final String type;
|
| @@ -13039,6 +13046,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 +13722,6 @@ class _TrackElementImpl extends _ElementImpl implements TrackElement native "*HT
|
|
|
| static final int NONE = 0;
|
|
|
| - bool isDefault;
|
| -
|
| String kind;
|
|
|
| String label;
|
| @@ -17045,12 +17052,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();
|
| @@ -20387,6 +20388,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 +21234,10 @@ interface FieldSetElement extends Element {
|
|
|
| final FormElement form;
|
|
|
| + String name;
|
| +
|
| + final String type;
|
| +
|
| final String validationMessage;
|
|
|
| final ValidityState validity;
|
| @@ -27164,6 +27181,8 @@ interface SelectElement extends Element {
|
|
|
| int selectedIndex;
|
|
|
| + final HTMLCollection selectedOptions;
|
| +
|
| int size;
|
|
|
| final String type;
|
| @@ -27204,6 +27223,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
|
|
|
| ShadowRoot(Element host);
|
|
|
| + final Element activeElement;
|
| +
|
| final Element host;
|
|
|
| String innerHTML;
|
| @@ -27941,8 +27962,6 @@ interface TrackElement extends Element {
|
|
|
| static final int NONE = 0;
|
|
|
| - bool isDefault;
|
| -
|
| String kind;
|
|
|
| String label;
|
|
|