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

Unified Diff: client/html/release/htmlimpl.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9148015: Example showing alternate async measurement solution (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Ready for review Created 8 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
Index: client/html/release/htmlimpl.dart
diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
index 5cf482ee0855d43c4ca6af8ecfa6f3ac2c6bc2b6..903400856fed285509c2d83dbe975a455ce488ce 100644
--- a/client/html/release/htmlimpl.dart
+++ b/client/html/release/htmlimpl.dart
@@ -2,7 +2,7 @@
#import('dart:dom', prefix:'dom');
#import('dart:html');
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -14,7 +14,7 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -115,7 +115,7 @@ class AnchorElementWrappingImplementation extends ElementWrappingImplementation
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -130,7 +130,7 @@ class AnimationListWrappingImplementation extends DOMWrapperBase implements Anim
return LevelDom.wrapAnimation(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -169,7 +169,7 @@ class AnimationWrappingImplementation extends DOMWrapperBase implements Animatio
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -224,7 +224,7 @@ class AreaElementWrappingImplementation extends ElementWrappingImplementation im
void set target(String value) { _ptr.target = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -239,7 +239,7 @@ class ArrayBufferViewWrappingImplementation extends DOMWrapperBase implements Ar
int get byteOffset() { return _ptr.byteOffset; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -258,7 +258,7 @@ class ArrayBufferWrappingImplementation extends DOMWrapperBase implements ArrayB
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -298,7 +298,7 @@ class AudioBufferSourceNodeWrappingImplementation extends AudioSourceNodeWrappin
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -323,7 +323,7 @@ class AudioBufferWrappingImplementation extends DOMWrapperBase implements AudioB
return LevelDom.wrapFloat32Array(_ptr.getChannelData(channelIndex));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -332,7 +332,7 @@ class AudioBufferWrappingImplementation extends DOMWrapperBase implements AudioB
class AudioChannelMergerWrappingImplementation extends AudioNodeWrappingImplementation implements AudioChannelMerger {
AudioChannelMergerWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -341,7 +341,7 @@ class AudioChannelMergerWrappingImplementation extends AudioNodeWrappingImplemen
class AudioChannelSplitterWrappingImplementation extends AudioNodeWrappingImplementation implements AudioChannelSplitter {
AudioChannelSplitterWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -433,7 +433,7 @@ class AudioContextWrappingImplementation extends DOMWrapperBase implements Audio
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -444,7 +444,7 @@ class AudioDestinationNodeWrappingImplementation extends AudioNodeWrappingImplem
int get numberOfChannels() { return _ptr.numberOfChannels; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -453,7 +453,7 @@ class AudioDestinationNodeWrappingImplementation extends AudioNodeWrappingImplem
class AudioElementWrappingImplementation extends MediaElementWrappingImplementation implements AudioElement {
AudioElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -464,7 +464,7 @@ class AudioGainNodeWrappingImplementation extends AudioNodeWrappingImplementatio
AudioGain get gain() { return LevelDom.wrapAudioGain(_ptr.gain); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -473,7 +473,7 @@ class AudioGainNodeWrappingImplementation extends AudioNodeWrappingImplementatio
class AudioGainWrappingImplementation extends AudioParamWrappingImplementation implements AudioGain {
AudioGainWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -505,7 +505,7 @@ class AudioListenerWrappingImplementation extends DOMWrapperBase implements Audi
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -548,7 +548,7 @@ class AudioNodeWrappingImplementation extends DOMWrapperBase implements AudioNod
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -608,7 +608,7 @@ class AudioPannerNodeWrappingImplementation extends AudioNodeWrappingImplementat
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -661,7 +661,7 @@ class AudioParamWrappingImplementation extends DOMWrapperBase implements AudioPa
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -674,7 +674,7 @@ class AudioProcessingEventWrappingImplementation extends EventWrappingImplementa
AudioBuffer get outputBuffer() { return LevelDom.wrapAudioBuffer(_ptr.outputBuffer); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -683,7 +683,7 @@ class AudioProcessingEventWrappingImplementation extends EventWrappingImplementa
class AudioSourceNodeWrappingImplementation extends AudioNodeWrappingImplementation implements AudioSourceNode {
AudioSourceNodeWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -696,7 +696,7 @@ class BRElementWrappingImplementation extends ElementWrappingImplementation impl
void set clear(String value) { _ptr.clear = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -707,7 +707,7 @@ class BarInfoWrappingImplementation extends DOMWrapperBase implements BarInfo {
bool get visible() { return _ptr.visible; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -724,7 +724,7 @@ class BaseElementWrappingImplementation extends ElementWrappingImplementation im
void set target(String value) { _ptr.target = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -743,7 +743,7 @@ class BiquadFilterNodeWrappingImplementation extends AudioNodeWrappingImplementa
void set type(int value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -780,7 +780,7 @@ class BlobBuilderWrappingImplementation extends DOMWrapperBase implements BlobBu
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -793,7 +793,7 @@ class BlobWrappingImplementation extends DOMWrapperBase implements Blob {
String get type() { return _ptr.type; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -868,7 +868,7 @@ class ButtonElementWrappingImplementation extends ElementWrappingImplementation
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -877,7 +877,7 @@ class ButtonElementWrappingImplementation extends ElementWrappingImplementation
class CDATASectionWrappingImplementation extends TextWrappingImplementation implements CDATASection {
CDATASectionWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -890,7 +890,7 @@ class CSSCharsetRuleWrappingImplementation extends CSSRuleWrappingImplementation
void set encoding(String value) { _ptr.encoding = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -901,7 +901,7 @@ class CSSFontFaceRuleWrappingImplementation extends CSSRuleWrappingImplementatio
CSSStyleDeclaration get style() { return LevelDom.wrapCSSStyleDeclaration(_ptr.style); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -916,7 +916,7 @@ class CSSImportRuleWrappingImplementation extends CSSRuleWrappingImplementation
CSSStyleSheet get styleSheet() { return LevelDom.wrapCSSStyleSheet(_ptr.styleSheet); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -931,7 +931,7 @@ class CSSKeyframeRuleWrappingImplementation extends CSSRuleWrappingImplementatio
CSSStyleDeclaration get style() { return LevelDom.wrapCSSStyleDeclaration(_ptr.style); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -960,7 +960,7 @@ class CSSKeyframesRuleWrappingImplementation extends CSSRuleWrappingImplementati
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1106,7 +1106,7 @@ class CSSMatrixWrappingImplementation extends DOMWrapperBase implements CSSMatri
return LevelDom.wrapCSSMatrix(_ptr.translate(x, y, z));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1128,7 +1128,7 @@ class CSSMediaRuleWrappingImplementation extends CSSRuleWrappingImplementation i
return _ptr.insertRule(rule, index);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1143,7 +1143,7 @@ class CSSPageRuleWrappingImplementation extends CSSRuleWrappingImplementation im
CSSStyleDeclaration get style() { return LevelDom.wrapCSSStyleDeclaration(_ptr.style); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1184,7 +1184,7 @@ class CSSPrimitiveValueWrappingImplementation extends CSSValueWrappingImplementa
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1199,7 +1199,7 @@ class CSSRuleListWrappingImplementation extends DOMWrapperBase implements CSSRul
return LevelDom.wrapCSSRule(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1218,7 +1218,7 @@ class CSSRuleWrappingImplementation extends DOMWrapperBase implements CSSRule {
int get type() { return _ptr.type; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1233,7 +1233,7 @@ class CSSStyleRuleWrappingImplementation extends CSSRuleWrappingImplementation i
CSSStyleDeclaration get style() { return LevelDom.wrapCSSStyleDeclaration(_ptr.style); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1270,7 +1270,7 @@ class CSSStyleSheetWrappingImplementation extends StyleSheetWrappingImplementati
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1281,7 +1281,7 @@ class CSSTransformValueWrappingImplementation extends CSSValueListWrappingImplem
int get operationType() { return _ptr.operationType; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1290,7 +1290,7 @@ class CSSTransformValueWrappingImplementation extends CSSValueListWrappingImplem
class CSSUnknownRuleWrappingImplementation extends CSSRuleWrappingImplementation implements CSSUnknownRule {
CSSUnknownRuleWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1305,7 +1305,7 @@ class CSSValueListWrappingImplementation extends CSSValueWrappingImplementation
return LevelDom.wrapCSSValue(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1320,7 +1320,7 @@ class CSSValueWrappingImplementation extends DOMWrapperBase implements CSSValue
int get cssValueType() { return _ptr.cssValueType; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1349,7 +1349,7 @@ class CanvasElementWrappingImplementation extends ElementWrappingImplementation
return _ptr.toDataURL(type);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1363,7 +1363,7 @@ class CanvasGradientWrappingImplementation extends DOMWrapperBase implements Can
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1372,7 +1372,7 @@ class CanvasGradientWrappingImplementation extends DOMWrapperBase implements Can
class CanvasPatternWrappingImplementation extends DOMWrapperBase implements CanvasPattern {
CanvasPatternWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -1476,7 +1476,7 @@ class CanvasPixelArrayWrappingImplementation extends DOMWrapperBase implements C
return new _FixedSizeListIterator<int>(this);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2150,7 +2150,7 @@ class CanvasRenderingContext2DWrappingImplementation extends CanvasRenderingCont
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2161,7 +2161,7 @@ class CanvasRenderingContextWrappingImplementation extends DOMWrapperBase implem
CanvasElement get canvas() { return LevelDom.wrapCanvasElement(_ptr.canvas); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2200,7 +2200,7 @@ class CharacterDataWrappingImplementation extends NodeWrappingImplementation imp
return _ptr.substringData(offset, length);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2215,7 +2215,7 @@ class ClientRectListWrappingImplementation extends DOMWrapperBase implements Cli
return LevelDom.wrapClientRect(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2236,7 +2236,7 @@ class ClientRectWrappingImplementation extends DOMWrapperBase implements ClientR
num get width() { return _ptr.width; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2283,7 +2283,7 @@ class ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboar
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2292,7 +2292,7 @@ class ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboar
class CommentWrappingImplementation extends CharacterDataWrappingImplementation implements Comment {
CommentWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2381,7 +2381,7 @@ class ConsoleWrappingImplementation extends DOMWrapperBase implements Console {
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2394,7 +2394,7 @@ class ConvolverNodeWrappingImplementation extends AudioNodeWrappingImplementatio
void set buffer(AudioBuffer value) { _ptr.buffer = LevelDom.unwrap(value); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2417,7 +2417,7 @@ class CoordinatesWrappingImplementation extends DOMWrapperBase implements Coordi
num get speed() { return _ptr.speed; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2432,7 +2432,7 @@ class CounterWrappingImplementation extends DOMWrapperBase implements Counter {
String get separator() { return _ptr.separator; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2446,7 +2446,7 @@ class CryptoWrappingImplementation extends DOMWrapperBase implements Crypto {
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2459,7 +2459,7 @@ class DListElementWrappingImplementation extends ElementWrappingImplementation i
void set compact(bool value) { _ptr.compact = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2478,7 +2478,7 @@ class DOMExceptionWrappingImplementation extends DOMWrapperBase implements DOMEx
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2491,7 +2491,7 @@ class DOMFileSystemSyncWrappingImplementation extends DOMWrapperBase implements
DirectoryEntrySync get root() { return LevelDom.wrapDirectoryEntrySync(_ptr.root); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2504,7 +2504,7 @@ class DOMFileSystemWrappingImplementation extends DOMWrapperBase implements DOMF
DirectoryEntry get root() { return LevelDom.wrapDirectoryEntry(_ptr.root); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2518,7 +2518,7 @@ class DOMFormDataWrappingImplementation extends DOMWrapperBase implements DOMFor
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2537,7 +2537,7 @@ class DOMMimeTypeArrayWrappingImplementation extends DOMWrapperBase implements D
return LevelDom.wrapDOMMimeType(_ptr.namedItem(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2554,7 +2554,7 @@ class DOMMimeTypeWrappingImplementation extends DOMWrapperBase implements DOMMim
String get type() { return _ptr.type; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2567,7 +2567,7 @@ class DOMParserWrappingImplementation extends DOMWrapperBase implements DOMParse
return LevelDom.wrapDocument(_ptr.parseFromString(str, contentType));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2591,7 +2591,7 @@ class DOMPluginArrayWrappingImplementation extends DOMWrapperBase implements DOM
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2616,7 +2616,7 @@ class DOMPluginWrappingImplementation extends DOMWrapperBase implements DOMPlugi
return LevelDom.wrapDOMMimeType(_ptr.namedItem(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2719,7 +2719,7 @@ class DOMSelectionWrappingImplementation extends DOMWrapperBase implements DOMSe
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2732,7 +2732,7 @@ class DOMSettableTokenListWrappingImplementation extends DOMTokenListWrappingImp
void set value(String value) { _ptr.value = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2769,7 +2769,7 @@ class DOMTokenListWrappingImplementation extends DOMWrapperBase implements DOMTo
return _ptr.toggle(token);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2787,7 +2787,7 @@ class DOMURLWrappingImplementation extends DOMWrapperBase implements DOMURL {
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2798,7 +2798,7 @@ class DataListElementWrappingImplementation extends ElementWrappingImplementatio
ElementList get options() { return LevelDom.wrapElementList(_ptr.options); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2823,7 +2823,7 @@ class DataTransferItemListWrappingImplementation extends DOMWrapperBase implemen
return LevelDom.wrapDataTransferItem(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2845,7 +2845,7 @@ class DataTransferItemWrappingImplementation extends DOMWrapperBase implements D
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2980,7 +2980,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -2991,7 +2991,7 @@ class DelayNodeWrappingImplementation extends AudioNodeWrappingImplementation im
AudioParam get delayTime() { return LevelDom.wrapAudioParam(_ptr.delayTime); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3004,7 +3004,7 @@ class DetailsElementWrappingImplementation extends ElementWrappingImplementation
void set open(bool value) { _ptr.open = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3030,7 +3030,7 @@ class DirectoryEntrySyncWrappingImplementation extends EntrySyncWrappingImplemen
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3115,7 +3115,7 @@ class DirectoryEntryWrappingImplementation extends EntryWrappingImplementation i
throw "Incorrect number or type of arguments";
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3128,7 +3128,7 @@ class DirectoryReaderSyncWrappingImplementation extends DOMWrapperBase implement
return LevelDom.wrapEntryArraySync(_ptr.readEntries());
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3147,7 +3147,7 @@ class DirectoryReaderWrappingImplementation extends DOMWrapperBase implements Di
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3160,7 +3160,7 @@ class DivElementWrappingImplementation extends ElementWrappingImplementation imp
void set align(String value) { _ptr.align = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3169,7 +3169,7 @@ class DivElementWrappingImplementation extends ElementWrappingImplementation imp
class DynamicsCompressorNodeWrappingImplementation extends AudioNodeWrappingImplementation implements DynamicsCompressorNode {
DynamicsCompressorNodeWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3198,7 +3198,7 @@ class ElementTimeControlWrappingImplementation extends DOMWrapperBase implements
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3231,7 +3231,7 @@ class EmbedElementWrappingImplementation extends ElementWrappingImplementation i
void set width(String value) { _ptr.width = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3240,7 +3240,7 @@ class EmbedElementWrappingImplementation extends ElementWrappingImplementation i
class EntityReferenceWrappingImplementation extends NodeWrappingImplementation implements EntityReference {
EntityReferenceWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3255,7 +3255,7 @@ class EntityWrappingImplementation extends NodeWrappingImplementation implements
String get systemId() { return _ptr.systemId; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3270,7 +3270,7 @@ class EntryArraySyncWrappingImplementation extends DOMWrapperBase implements Ent
return LevelDom.wrapEntrySync(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3285,7 +3285,7 @@ class EntryArrayWrappingImplementation extends DOMWrapperBase implements EntryAr
return LevelDom.wrapEntry(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3329,7 +3329,7 @@ class EntrySyncWrappingImplementation extends DOMWrapperBase implements EntrySyn
return _ptr.toURL();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3460,7 +3460,7 @@ class EntryWrappingImplementation extends DOMWrapperBase implements Entry {
return _ptr.toURL();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3479,7 +3479,7 @@ class EventExceptionWrappingImplementation extends DOMWrapperBase implements Eve
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3505,7 +3505,7 @@ class FieldSetElementWrappingImplementation extends ElementWrappingImplementatio
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3522,7 +3522,7 @@ class FileEntrySyncWrappingImplementation extends EntrySyncWrappingImplementatio
return LevelDom.wrapFile(_ptr.file());
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3551,7 +3551,7 @@ class FileEntryWrappingImplementation extends EntryWrappingImplementation implem
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3562,7 +3562,7 @@ class FileErrorWrappingImplementation extends DOMWrapperBase implements FileErro
int get code() { return _ptr.code; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3581,7 +3581,7 @@ class FileExceptionWrappingImplementation extends DOMWrapperBase implements File
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3596,7 +3596,7 @@ class FileListWrappingImplementation extends DOMWrapperBase implements FileList
return LevelDom.wrapFile(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3625,7 +3625,7 @@ class FileReaderSyncWrappingImplementation extends DOMWrapperBase implements Fil
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3670,7 +3670,7 @@ class FileReaderWrappingImplementation extends DOMWrapperBase implements FileRea
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3687,7 +3687,7 @@ class FileWrappingImplementation extends BlobWrappingImplementation implements F
String get name() { return _ptr.name; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3715,7 +3715,7 @@ class FileWriterSyncWrappingImplementation extends DOMWrapperBase implements Fil
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3752,7 +3752,7 @@ class FileWriterWrappingImplementation extends DOMWrapperBase implements FileWri
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3769,7 +3769,7 @@ class FlagsWrappingImplementation extends DOMWrapperBase implements Flags {
void set exclusive(bool value) { _ptr.exclusive = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3788,7 +3788,7 @@ class Float32ArrayWrappingImplementation extends ArrayBufferViewWrappingImplemen
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3807,7 +3807,7 @@ class Float64ArrayWrappingImplementation extends ArrayBufferViewWrappingImplemen
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3828,7 +3828,7 @@ class FontElementWrappingImplementation extends ElementWrappingImplementation im
void set size(String value) { _ptr.size = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3889,7 +3889,7 @@ class FormElementWrappingImplementation extends ElementWrappingImplementation im
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3921,7 +3921,7 @@ class GeolocationWrappingImplementation extends DOMWrapperBase implements Geoloc
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3934,7 +3934,7 @@ class GeopositionWrappingImplementation extends DOMWrapperBase implements Geopos
int get timestamp() { return _ptr.timestamp; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3959,7 +3959,7 @@ class HRElementWrappingImplementation extends ElementWrappingImplementation impl
void set width(String value) { _ptr.width = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3982,7 +3982,7 @@ class HTMLAllCollectionWrappingImplementation extends DOMWrapperBase implements
return LevelDom.wrapElementList(_ptr.tags(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -3995,7 +3995,7 @@ class HeadElementWrappingImplementation extends ElementWrappingImplementation im
void set profile(String value) { _ptr.profile = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4008,7 +4008,7 @@ class HeadingElementWrappingImplementation extends ElementWrappingImplementation
void set align(String value) { _ptr.align = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4021,7 +4021,7 @@ class HighPass2FilterNodeWrappingImplementation extends AudioNodeWrappingImpleme
AudioParam get resonance() { return LevelDom.wrapAudioParam(_ptr.resonance); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4067,7 +4067,7 @@ class HistoryWrappingImplementation extends DOMWrapperBase implements History {
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4076,7 +4076,7 @@ class HistoryWrappingImplementation extends DOMWrapperBase implements History {
class IDBAnyWrappingImplementation extends DOMWrapperBase implements IDBAny {
IDBAnyWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4087,7 +4087,7 @@ class IDBCursorWithValueWrappingImplementation extends IDBCursorWrappingImplemen
IDBAny get value() { return LevelDom.wrapIDBAny(_ptr.value); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4122,7 +4122,7 @@ class IDBCursorWrappingImplementation extends DOMWrapperBase implements IDBCurso
return LevelDom.wrapIDBRequest(_ptr.update(value));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4139,7 +4139,7 @@ class IDBDatabaseErrorWrappingImplementation extends DOMWrapperBase implements I
void set message(String value) { _ptr.message = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4158,7 +4158,7 @@ class IDBDatabaseExceptionWrappingImplementation extends DOMWrapperBase implemen
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4217,7 +4217,7 @@ class IDBDatabaseWrappingImplementation extends DOMWrapperBase implements IDBDat
return LevelDom.wrapIDBTransaction(_ptr.transaction(storeName, mode));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4242,7 +4242,7 @@ class IDBFactoryWrappingImplementation extends DOMWrapperBase implements IDBFact
return LevelDom.wrapIDBRequest(_ptr.open(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4297,7 +4297,7 @@ class IDBIndexWrappingImplementation extends DOMWrapperBase implements IDBIndex
throw "Incorrect number or type of arguments";
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4349,7 +4349,7 @@ class IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKey
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4358,7 +4358,7 @@ class IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKey
class IDBKeyWrappingImplementation extends DOMWrapperBase implements IDBKey {
IDBKeyWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4429,7 +4429,7 @@ class IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements IDB
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4474,7 +4474,7 @@ class IDBRequestWrappingImplementation extends DOMWrapperBase implements IDBRequ
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4520,7 +4520,7 @@ class IDBTransactionWrappingImplementation extends DOMWrapperBase implements IDB
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4531,7 +4531,7 @@ class IDBVersionChangeEventWrappingImplementation extends EventWrappingImplement
String get version() { return _ptr.version; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4540,7 +4540,7 @@ class IDBVersionChangeEventWrappingImplementation extends EventWrappingImplement
class IDBVersionChangeRequestWrappingImplementation extends IDBRequestWrappingImplementation implements IDBVersionChangeRequest {
IDBVersionChangeRequestWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4597,7 +4597,7 @@ class IFrameElementWrappingImplementation extends ElementWrappingImplementation
void set width(String value) { _ptr.width = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4612,7 +4612,7 @@ class ImageDataWrappingImplementation extends DOMWrapperBase implements ImageDat
int get width() { return _ptr.width; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4687,7 +4687,7 @@ class ImageElementWrappingImplementation extends ElementWrappingImplementation i
int get y() { return _ptr.y; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4921,7 +4921,7 @@ class InputElementWrappingImplementation extends ElementWrappingImplementation i
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4940,7 +4940,7 @@ class Int16ArrayWrappingImplementation extends ArrayBufferViewWrappingImplementa
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4959,7 +4959,7 @@ class Int32ArrayWrappingImplementation extends ArrayBufferViewWrappingImplementa
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4978,7 +4978,7 @@ class Int8ArrayWrappingImplementation extends ArrayBufferViewWrappingImplementat
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -4989,7 +4989,7 @@ class JavaScriptAudioNodeWrappingImplementation extends AudioNodeWrappingImpleme
int get bufferSize() { return _ptr.bufferSize; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5039,7 +5039,7 @@ class KeygenElementWrappingImplementation extends ElementWrappingImplementation
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5056,7 +5056,7 @@ class LIElementWrappingImplementation extends ElementWrappingImplementation impl
void set value(int value) { _ptr.value = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5077,7 +5077,7 @@ class LabelElementWrappingImplementation extends ElementWrappingImplementation i
void set htmlFor(String value) { _ptr.htmlFor = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5096,7 +5096,7 @@ class LegendElementWrappingImplementation extends ElementWrappingImplementation
FormElement get form() { return LevelDom.wrapFormElement(_ptr.form); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5147,7 +5147,7 @@ class LinkElementWrappingImplementation extends ElementWrappingImplementation im
void set type(String value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5213,7 +5213,7 @@ class LocationWrappingImplementation extends DOMWrapperBase implements Location
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5232,7 +5232,7 @@ class LoseContextWrappingImplementation extends DOMWrapperBase implements LoseCo
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5245,7 +5245,7 @@ class LowPass2FilterNodeWrappingImplementation extends AudioNodeWrappingImplemen
AudioParam get resonance() { return LevelDom.wrapAudioParam(_ptr.resonance); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5260,7 +5260,7 @@ class MapElementWrappingImplementation extends ElementWrappingImplementation imp
void set name(String value) { _ptr.name = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5323,7 +5323,7 @@ class MarqueeElementWrappingImplementation extends ElementWrappingImplementation
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5334,7 +5334,7 @@ class MediaElementAudioSourceNodeWrappingImplementation extends AudioSourceNodeW
MediaElement get mediaElement() { return LevelDom.wrapMediaElement(_ptr.mediaElement); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5446,7 +5446,7 @@ class MediaElementWrappingImplementation extends ElementWrappingImplementation i
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5457,7 +5457,7 @@ class MediaErrorWrappingImplementation extends DOMWrapperBase implements MediaEr
int get code() { return _ptr.code; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5579,7 +5579,7 @@ class MediaListWrappingImplementation extends DOMWrapperBase implements MediaLis
return _ptr.item(index);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5593,7 +5593,7 @@ class MediaQueryListListenerWrappingImplementation extends DOMWrapperBase implem
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5616,7 +5616,7 @@ class MediaQueryListWrappingImplementation extends DOMWrapperBase implements Med
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5629,7 +5629,7 @@ class MenuElementWrappingImplementation extends ElementWrappingImplementation im
void set compact(bool value) { _ptr.compact = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5642,7 +5642,7 @@ class MessageChannelWrappingImplementation extends DOMWrapperBase implements Mes
MessagePort get port2() { return LevelDom.wrapMessagePort(_ptr.port2); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5667,7 +5667,7 @@ class MetaElementWrappingImplementation extends ElementWrappingImplementation im
void set scheme(String value) { _ptr.scheme = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5678,7 +5678,7 @@ class MetadataWrappingImplementation extends DOMWrapperBase implements Metadata
Date get modificationTime() { return _ptr.modificationTime; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5715,7 +5715,7 @@ class MeterElementWrappingImplementation extends ElementWrappingImplementation i
void set value(num value) { _ptr.value = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5732,7 +5732,7 @@ class ModElementWrappingImplementation extends ElementWrappingImplementation imp
void set dateTime(String value) { _ptr.dateTime = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5741,7 +5741,7 @@ class ModElementWrappingImplementation extends ElementWrappingImplementation imp
class MutationCallbackWrappingImplementation extends DOMWrapperBase implements MutationCallback {
MutationCallbackWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5768,7 +5768,7 @@ class MutationRecordWrappingImplementation extends DOMWrapperBase implements Mut
String get type() { return _ptr.type; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5779,7 +5779,7 @@ class NavigatorUserMediaErrorWrappingImplementation extends DOMWrapperBase imple
int get code() { return _ptr.code; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5788,7 +5788,7 @@ class NavigatorUserMediaErrorWrappingImplementation extends DOMWrapperBase imple
class NavigatorUserMediaSuccessCallbackWrappingImplementation extends DOMWrapperBase implements NavigatorUserMediaSuccessCallback {
NavigatorUserMediaSuccessCallbackWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5834,7 +5834,7 @@ class NavigatorWrappingImplementation extends DOMWrapperBase implements Navigato
return _ptr.javaEnabled();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5847,7 +5847,7 @@ class NotationWrappingImplementation extends NodeWrappingImplementation implemen
String get systemId() { return _ptr.systemId; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5873,7 +5873,7 @@ class NotificationCenterWrappingImplementation extends DOMWrapperBase implements
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5882,7 +5882,7 @@ class NotificationCenterWrappingImplementation extends DOMWrapperBase implements
class OESStandardDerivativesWrappingImplementation extends DOMWrapperBase implements OESStandardDerivatives {
OESStandardDerivativesWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5891,7 +5891,7 @@ class OESStandardDerivativesWrappingImplementation extends DOMWrapperBase implem
class OESTextureFloatWrappingImplementation extends DOMWrapperBase implements OESTextureFloat {
OESTextureFloatWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5918,7 +5918,7 @@ class OESVertexArrayObjectWrappingImplementation extends DOMWrapperBase implemen
return _ptr.isVertexArrayOES(LevelDom.unwrap(arrayObject));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5939,7 +5939,7 @@ class OListElementWrappingImplementation extends ElementWrappingImplementation i
void set type(String value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5950,7 +5950,7 @@ class OfflineAudioCompletionEventWrappingImplementation extends EventWrappingImp
AudioBuffer get renderedBuffer() { return LevelDom.wrapAudioBuffer(_ptr.renderedBuffer); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5969,7 +5969,7 @@ class OperationNotAllowedExceptionWrappingImplementation extends DOMWrapperBase
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -5986,7 +5986,7 @@ class OptGroupElementWrappingImplementation extends ElementWrappingImplementatio
void set label(String value) { _ptr.label = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6023,7 +6023,7 @@ class OptionElementWrappingImplementation extends ElementWrappingImplementation
void set value(String value) { _ptr.value = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6069,7 +6069,7 @@ class OutputElementWrappingImplementation extends ElementWrappingImplementation
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6082,7 +6082,7 @@ class ParagraphElementWrappingImplementation extends ElementWrappingImplementati
void set align(String value) { _ptr.align = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6107,7 +6107,7 @@ class ParamElementWrappingImplementation extends ElementWrappingImplementation i
void set valueType(String value) { _ptr.valueType = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6127,7 +6127,7 @@ class PointWrappingImplementation extends DOMWrapperBase implements Point {
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6140,7 +6140,7 @@ class PositionErrorWrappingImplementation extends DOMWrapperBase implements Posi
String get message() { return _ptr.message; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6157,7 +6157,7 @@ class PreElementWrappingImplementation extends ElementWrappingImplementation imp
void set wrap(bool value) { _ptr.wrap = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6174,7 +6174,7 @@ class ProcessingInstructionWrappingImplementation extends NodeWrappingImplementa
String get target() { return _ptr.target; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6197,7 +6197,7 @@ class ProgressElementWrappingImplementation extends ElementWrappingImplementatio
void set value(num value) { _ptr.value = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6210,7 +6210,7 @@ class QuoteElementWrappingImplementation extends ElementWrappingImplementation i
void set cite(String value) { _ptr.cite = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6225,7 +6225,7 @@ class RGBColorWrappingImplementation extends DOMWrapperBase implements RGBColor
CSSPrimitiveValue get red() { return LevelDom.wrapCSSPrimitiveValue(_ptr.red); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6244,7 +6244,7 @@ class RangeExceptionWrappingImplementation extends DOMWrapperBase implements Ran
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6379,7 +6379,7 @@ class RangeWrappingImplementation extends DOMWrapperBase implements Range {
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6421,7 +6421,7 @@ class RealtimeAnalyserNodeWrappingImplementation extends AudioNodeWrappingImplem
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6438,7 +6438,7 @@ class RectWrappingImplementation extends DOMWrapperBase implements Rect {
CSSPrimitiveValue get top() { return LevelDom.wrapCSSPrimitiveValue(_ptr.top); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6515,7 +6515,7 @@ class SVGAElementWrappingImplementation extends SVGElementWrappingImplementation
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6524,7 +6524,7 @@ class SVGAElementWrappingImplementation extends SVGElementWrappingImplementation
class SVGAltGlyphDefElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGAltGlyphDefElement {
SVGAltGlyphDefElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6545,7 +6545,7 @@ class SVGAltGlyphElementWrappingImplementation extends SVGTextPositioningElement
SVGAnimatedString get href() { return LevelDom.wrapSVGAnimatedString(_ptr.href); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6554,7 +6554,7 @@ class SVGAltGlyphElementWrappingImplementation extends SVGTextPositioningElement
class SVGAltGlyphItemElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGAltGlyphItemElement {
SVGAltGlyphItemElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6587,7 +6587,7 @@ class SVGAngleWrappingImplementation extends DOMWrapperBase implements SVGAngle
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6596,7 +6596,7 @@ class SVGAngleWrappingImplementation extends DOMWrapperBase implements SVGAngle
class SVGAnimateColorElementWrappingImplementation extends SVGAnimationElementWrappingImplementation implements SVGAnimateColorElement {
SVGAnimateColorElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6605,7 +6605,7 @@ class SVGAnimateColorElementWrappingImplementation extends SVGAnimationElementWr
class SVGAnimateElementWrappingImplementation extends SVGAnimationElementWrappingImplementation implements SVGAnimateElement {
SVGAnimateElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6614,7 +6614,7 @@ class SVGAnimateElementWrappingImplementation extends SVGAnimationElementWrappin
class SVGAnimateMotionElementWrappingImplementation extends SVGAnimationElementWrappingImplementation implements SVGAnimateMotionElement {
SVGAnimateMotionElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6623,7 +6623,7 @@ class SVGAnimateMotionElementWrappingImplementation extends SVGAnimationElementW
class SVGAnimateTransformElementWrappingImplementation extends SVGAnimationElementWrappingImplementation implements SVGAnimateTransformElement {
SVGAnimateTransformElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6636,7 +6636,7 @@ class SVGAnimatedAngleWrappingImplementation extends DOMWrapperBase implements S
SVGAngle get baseVal() { return LevelDom.wrapSVGAngle(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6651,7 +6651,7 @@ class SVGAnimatedBooleanWrappingImplementation extends DOMWrapperBase implements
void set baseVal(bool value) { _ptr.baseVal = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6666,7 +6666,7 @@ class SVGAnimatedEnumerationWrappingImplementation extends DOMWrapperBase implem
void set baseVal(int value) { _ptr.baseVal = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6681,7 +6681,7 @@ class SVGAnimatedIntegerWrappingImplementation extends DOMWrapperBase implements
void set baseVal(int value) { _ptr.baseVal = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6694,7 +6694,7 @@ class SVGAnimatedLengthListWrappingImplementation extends DOMWrapperBase impleme
SVGLengthList get baseVal() { return LevelDom.wrapSVGLengthList(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6707,7 +6707,7 @@ class SVGAnimatedLengthWrappingImplementation extends DOMWrapperBase implements
SVGLength get baseVal() { return LevelDom.wrapSVGLength(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6720,7 +6720,7 @@ class SVGAnimatedNumberListWrappingImplementation extends DOMWrapperBase impleme
SVGNumberList get baseVal() { return LevelDom.wrapSVGNumberList(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6735,7 +6735,7 @@ class SVGAnimatedNumberWrappingImplementation extends DOMWrapperBase implements
void set baseVal(num value) { _ptr.baseVal = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6748,7 +6748,7 @@ class SVGAnimatedPreserveAspectRatioWrappingImplementation extends DOMWrapperBas
SVGPreserveAspectRatio get baseVal() { return LevelDom.wrapSVGPreserveAspectRatio(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6761,7 +6761,7 @@ class SVGAnimatedRectWrappingImplementation extends DOMWrapperBase implements SV
SVGRect get baseVal() { return LevelDom.wrapSVGRect(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6776,7 +6776,7 @@ class SVGAnimatedStringWrappingImplementation extends DOMWrapperBase implements
void set baseVal(String value) { _ptr.baseVal = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6789,7 +6789,7 @@ class SVGAnimatedTransformListWrappingImplementation extends DOMWrapperBase impl
SVGTransformList get baseVal() { return LevelDom.wrapSVGTransformList(_ptr.baseVal); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6850,7 +6850,7 @@ class SVGAnimationElementWrappingImplementation extends SVGElementWrappingImplem
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -6927,7 +6927,7 @@ class SVGCircleElementWrappingImplementation extends SVGElementWrappingImplement
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7000,7 +7000,7 @@ class SVGClipPathElementWrappingImplementation extends SVGElementWrappingImpleme
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7028,7 +7028,7 @@ class SVGColorWrappingImplementation extends CSSValueWrappingImplementation impl
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7051,7 +7051,7 @@ class SVGComponentTransferFunctionElementWrappingImplementation extends SVGEleme
SVGAnimatedEnumeration get type() { return LevelDom.wrapSVGAnimatedEnumeration(_ptr.type); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7084,7 +7084,7 @@ class SVGCursorElementWrappingImplementation extends SVGElementWrappingImplement
SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAnimatedBoolean(_ptr.externalResourcesRequired); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7155,7 +7155,7 @@ class SVGDefsElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7184,7 +7184,7 @@ class SVGDescElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7199,7 +7199,7 @@ class SVGElementInstanceListWrappingImplementation extends DOMWrapperBase implem
return LevelDom.wrapSVGElementInstance(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7278,7 +7278,7 @@ class SVGEllipseElementWrappingImplementation extends SVGElementWrappingImplemen
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7297,7 +7297,7 @@ class SVGExceptionWrappingImplementation extends DOMWrapperBase implements SVGEx
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7308,7 +7308,7 @@ class SVGExternalResourcesRequiredWrappingImplementation extends DOMWrapperBase
SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAnimatedBoolean(_ptr.externalResourcesRequired); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7345,7 +7345,7 @@ class SVGFEBlendElementWrappingImplementation extends SVGElementWrappingImplemen
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7382,7 +7382,7 @@ class SVGFEColorMatrixElementWrappingImplementation extends SVGElementWrappingIm
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7415,7 +7415,7 @@ class SVGFEComponentTransferElementWrappingImplementation extends SVGElementWrap
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7470,7 +7470,7 @@ class SVGFEConvolveMatrixElementWrappingImplementation extends SVGElementWrappin
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7511,7 +7511,7 @@ class SVGFEDiffuseLightingElementWrappingImplementation extends SVGElementWrappi
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7552,7 +7552,7 @@ class SVGFEDisplacementMapElementWrappingImplementation extends SVGElementWrappi
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7565,7 +7565,7 @@ class SVGFEDistantLightElementWrappingImplementation extends SVGElementWrappingI
SVGAnimatedNumber get elevation() { return LevelDom.wrapSVGAnimatedNumber(_ptr.elevation); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7611,7 +7611,7 @@ class SVGFEDropShadowElementWrappingImplementation extends SVGElementWrappingImp
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7642,7 +7642,7 @@ class SVGFEFloodElementWrappingImplementation extends SVGElementWrappingImplemen
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7651,7 +7651,7 @@ class SVGFEFloodElementWrappingImplementation extends SVGElementWrappingImplemen
class SVGFEFuncAElementWrappingImplementation extends SVGComponentTransferFunctionElementWrappingImplementation implements SVGFEFuncAElement {
SVGFEFuncAElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7660,7 +7660,7 @@ class SVGFEFuncAElementWrappingImplementation extends SVGComponentTransferFuncti
class SVGFEFuncBElementWrappingImplementation extends SVGComponentTransferFunctionElementWrappingImplementation implements SVGFEFuncBElement {
SVGFEFuncBElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7669,7 +7669,7 @@ class SVGFEFuncBElementWrappingImplementation extends SVGComponentTransferFuncti
class SVGFEFuncGElementWrappingImplementation extends SVGComponentTransferFunctionElementWrappingImplementation implements SVGFEFuncGElement {
SVGFEFuncGElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7678,7 +7678,7 @@ class SVGFEFuncGElementWrappingImplementation extends SVGComponentTransferFuncti
class SVGFEFuncRElementWrappingImplementation extends SVGComponentTransferFunctionElementWrappingImplementation implements SVGFEFuncRElement {
SVGFEFuncRElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7720,7 +7720,7 @@ class SVGFEGaussianBlurElementWrappingImplementation extends SVGElementWrappingI
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7771,7 +7771,7 @@ class SVGFEImageElementWrappingImplementation extends SVGElementWrappingImplemen
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7802,7 +7802,7 @@ class SVGFEMergeElementWrappingImplementation extends SVGElementWrappingImplemen
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7813,7 +7813,7 @@ class SVGFEMergeNodeElementWrappingImplementation extends SVGElementWrappingImpl
SVGAnimatedString get in1() { return LevelDom.wrapSVGAnimatedString(_ptr.in1); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7850,7 +7850,7 @@ class SVGFEOffsetElementWrappingImplementation extends SVGElementWrappingImpleme
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7865,7 +7865,7 @@ class SVGFEPointLightElementWrappingImplementation extends SVGElementWrappingImp
SVGAnimatedNumber get z() { return LevelDom.wrapSVGAnimatedNumber(_ptr.z); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7904,7 +7904,7 @@ class SVGFESpecularLightingElementWrappingImplementation extends SVGElementWrapp
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7929,7 +7929,7 @@ class SVGFESpotLightElementWrappingImplementation extends SVGElementWrappingImpl
SVGAnimatedNumber get z() { return LevelDom.wrapSVGAnimatedNumber(_ptr.z); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -7962,7 +7962,7 @@ class SVGFETileElementWrappingImplementation extends SVGElementWrappingImplement
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8005,7 +8005,7 @@ class SVGFETurbulenceElementWrappingImplementation extends SVGElementWrappingImp
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8063,7 +8063,7 @@ class SVGFilterElementWrappingImplementation extends SVGElementWrappingImplement
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8082,7 +8082,7 @@ class SVGFilterPrimitiveStandardAttributesWrappingImplementation extends SVGStyl
SVGAnimatedLength get y() { return LevelDom.wrapSVGAnimatedLength(_ptr.y); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8095,7 +8095,7 @@ class SVGFitToViewBoxWrappingImplementation extends DOMWrapperBase implements SV
SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewBox); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8104,7 +8104,7 @@ class SVGFitToViewBoxWrappingImplementation extends DOMWrapperBase implements SV
class SVGFontElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGFontElement {
SVGFontElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8113,7 +8113,7 @@ class SVGFontElementWrappingImplementation extends SVGElementWrappingImplementat
class SVGFontFaceElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGFontFaceElement {
SVGFontFaceElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8122,7 +8122,7 @@ class SVGFontFaceElementWrappingImplementation extends SVGElementWrappingImpleme
class SVGFontFaceFormatElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGFontFaceFormatElement {
SVGFontFaceFormatElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8131,7 +8131,7 @@ class SVGFontFaceFormatElementWrappingImplementation extends SVGElementWrappingI
class SVGFontFaceNameElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGFontFaceNameElement {
SVGFontFaceNameElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8140,7 +8140,7 @@ class SVGFontFaceNameElementWrappingImplementation extends SVGElementWrappingImp
class SVGFontFaceSrcElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGFontFaceSrcElement {
SVGFontFaceSrcElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8149,7 +8149,7 @@ class SVGFontFaceSrcElementWrappingImplementation extends SVGElementWrappingImpl
class SVGFontFaceUriElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGFontFaceUriElement {
SVGFontFaceUriElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8228,7 +8228,7 @@ class SVGForeignObjectElementWrappingImplementation extends SVGElementWrappingIm
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8299,7 +8299,7 @@ class SVGGElementWrappingImplementation extends SVGElementWrappingImplementation
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8308,7 +8308,7 @@ class SVGGElementWrappingImplementation extends SVGElementWrappingImplementation
class SVGGlyphElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGGlyphElement {
SVGGlyphElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8355,7 +8355,7 @@ class SVGGlyphRefElementWrappingImplementation extends SVGElementWrappingImpleme
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8388,7 +8388,7 @@ class SVGGradientElementWrappingImplementation extends SVGElementWrappingImpleme
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8397,7 +8397,7 @@ class SVGGradientElementWrappingImplementation extends SVGElementWrappingImpleme
class SVGHKernElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGHKernElement {
SVGHKernElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8482,7 +8482,7 @@ class SVGImageElementWrappingImplementation extends SVGElementWrappingImplementa
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8499,7 +8499,7 @@ class SVGLangSpaceWrappingImplementation extends DOMWrapperBase implements SVGLa
void set xmlspace(String value) { _ptr.xmlspace = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8539,7 +8539,7 @@ class SVGLengthListWrappingImplementation extends DOMWrapperBase implements SVGL
return LevelDom.wrapSVGLength(_ptr.replaceItem(LevelDom.unwrap(item), index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8572,7 +8572,7 @@ class SVGLengthWrappingImplementation extends DOMWrapperBase implements SVGLengt
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8651,7 +8651,7 @@ class SVGLineElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8668,7 +8668,7 @@ class SVGLinearGradientElementWrappingImplementation extends SVGGradientElementW
SVGAnimatedLength get y2() { return LevelDom.wrapSVGAnimatedLength(_ptr.y2); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8697,7 +8697,7 @@ class SVGLocatableWrappingImplementation extends DOMWrapperBase implements SVGLo
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8714,7 +8714,7 @@ class SVGMPathElementWrappingImplementation extends SVGElementWrappingImplementa
SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAnimatedBoolean(_ptr.externalResourcesRequired); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8777,7 +8777,7 @@ class SVGMarkerElementWrappingImplementation extends SVGElementWrappingImplement
SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewBox); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8834,7 +8834,7 @@ class SVGMaskElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8911,7 +8911,7 @@ class SVGMatrixWrappingImplementation extends DOMWrapperBase implements SVGMatri
return LevelDom.wrapSVGMatrix(_ptr.translate(x, y));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8920,7 +8920,7 @@ class SVGMatrixWrappingImplementation extends DOMWrapperBase implements SVGMatri
class SVGMetadataElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGMetadataElement {
SVGMetadataElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8929,7 +8929,7 @@ class SVGMetadataElementWrappingImplementation extends SVGElementWrappingImpleme
class SVGMissingGlyphElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGMissingGlyphElement {
SVGMissingGlyphElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8969,7 +8969,7 @@ class SVGNumberListWrappingImplementation extends DOMWrapperBase implements SVGN
return LevelDom.wrapSVGNumber(_ptr.replaceItem(LevelDom.unwrap(item), index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -8982,7 +8982,7 @@ class SVGNumberWrappingImplementation extends DOMWrapperBase implements SVGNumbe
void set value(num value) { _ptr.value = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9005,7 +9005,7 @@ class SVGPaintWrappingImplementation extends SVGColorWrappingImplementation impl
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9174,7 +9174,7 @@ class SVGPathElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9211,7 +9211,7 @@ class SVGPathSegArcAbsWrappingImplementation extends SVGPathSegWrappingImplement
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9248,7 +9248,7 @@ class SVGPathSegArcRelWrappingImplementation extends SVGPathSegWrappingImplement
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9257,7 +9257,7 @@ class SVGPathSegArcRelWrappingImplementation extends SVGPathSegWrappingImplement
class SVGPathSegClosePathWrappingImplementation extends SVGPathSegWrappingImplementation implements SVGPathSegClosePath {
SVGPathSegClosePathWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9290,7 +9290,7 @@ class SVGPathSegCurvetoCubicAbsWrappingImplementation extends SVGPathSegWrapping
void set y2(num value) { _ptr.y2 = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9323,7 +9323,7 @@ class SVGPathSegCurvetoCubicRelWrappingImplementation extends SVGPathSegWrapping
void set y2(num value) { _ptr.y2 = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9348,7 +9348,7 @@ class SVGPathSegCurvetoCubicSmoothAbsWrappingImplementation extends SVGPathSegWr
void set y2(num value) { _ptr.y2 = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9373,7 +9373,7 @@ class SVGPathSegCurvetoCubicSmoothRelWrappingImplementation extends SVGPathSegWr
void set y2(num value) { _ptr.y2 = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9398,7 +9398,7 @@ class SVGPathSegCurvetoQuadraticAbsWrappingImplementation extends SVGPathSegWrap
void set y1(num value) { _ptr.y1 = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9423,7 +9423,7 @@ class SVGPathSegCurvetoQuadraticRelWrappingImplementation extends SVGPathSegWrap
void set y1(num value) { _ptr.y1 = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9440,7 +9440,7 @@ class SVGPathSegCurvetoQuadraticSmoothAbsWrappingImplementation extends SVGPathS
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9457,7 +9457,7 @@ class SVGPathSegCurvetoQuadraticSmoothRelWrappingImplementation extends SVGPathS
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9474,7 +9474,7 @@ class SVGPathSegLinetoAbsWrappingImplementation extends SVGPathSegWrappingImplem
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9487,7 +9487,7 @@ class SVGPathSegLinetoHorizontalAbsWrappingImplementation extends SVGPathSegWrap
void set x(num value) { _ptr.x = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9500,7 +9500,7 @@ class SVGPathSegLinetoHorizontalRelWrappingImplementation extends SVGPathSegWrap
void set x(num value) { _ptr.x = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9517,7 +9517,7 @@ class SVGPathSegLinetoRelWrappingImplementation extends SVGPathSegWrappingImplem
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9530,7 +9530,7 @@ class SVGPathSegLinetoVerticalAbsWrappingImplementation extends SVGPathSegWrappi
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9543,7 +9543,7 @@ class SVGPathSegLinetoVerticalRelWrappingImplementation extends SVGPathSegWrappi
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9583,7 +9583,7 @@ class SVGPathSegListWrappingImplementation extends DOMWrapperBase implements SVG
return LevelDom.wrapSVGPathSeg(_ptr.replaceItem(LevelDom.unwrap(newItem), index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9600,7 +9600,7 @@ class SVGPathSegMovetoAbsWrappingImplementation extends SVGPathSegWrappingImplem
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9617,7 +9617,7 @@ class SVGPathSegMovetoRelWrappingImplementation extends SVGPathSegWrappingImplem
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9630,7 +9630,7 @@ class SVGPathSegWrappingImplementation extends DOMWrapperBase implements SVGPath
String get pathSegTypeAsLetter() { return _ptr.pathSegTypeAsLetter; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9699,7 +9699,7 @@ class SVGPatternElementWrappingImplementation extends SVGElementWrappingImplemen
SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewBox); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9739,7 +9739,7 @@ class SVGPointListWrappingImplementation extends DOMWrapperBase implements SVGPo
return LevelDom.wrapSVGPoint(_ptr.replaceItem(LevelDom.unwrap(item), index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9760,7 +9760,7 @@ class SVGPointWrappingImplementation extends DOMWrapperBase implements SVGPoint
return LevelDom.wrapSVGPoint(_ptr.matrixTransform(LevelDom.unwrap(matrix)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9835,7 +9835,7 @@ class SVGPolygonElementWrappingImplementation extends SVGElementWrappingImplemen
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9910,7 +9910,7 @@ class SVGPolylineElementWrappingImplementation extends SVGElementWrappingImpleme
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9927,7 +9927,7 @@ class SVGPreserveAspectRatioWrappingImplementation extends DOMWrapperBase implem
void set meetOrSlice(int value) { _ptr.meetOrSlice = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -9946,7 +9946,7 @@ class SVGRadialGradientElementWrappingImplementation extends SVGGradientElementW
SVGAnimatedLength get r() { return LevelDom.wrapSVGAnimatedLength(_ptr.r); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10029,7 +10029,7 @@ class SVGRectElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10054,7 +10054,7 @@ class SVGRectWrappingImplementation extends DOMWrapperBase implements SVGRect {
void set y(num value) { _ptr.y = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10063,7 +10063,7 @@ class SVGRectWrappingImplementation extends DOMWrapperBase implements SVGRect {
class SVGRenderingIntentWrappingImplementation extends DOMWrapperBase implements SVGRenderingIntent {
SVGRenderingIntentWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10084,7 +10084,7 @@ class SVGScriptElementWrappingImplementation extends SVGElementWrappingImplement
SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAnimatedBoolean(_ptr.externalResourcesRequired); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10093,7 +10093,7 @@ class SVGScriptElementWrappingImplementation extends SVGElementWrappingImplement
class SVGSetElementWrappingImplementation extends SVGAnimationElementWrappingImplementation implements SVGSetElement {
SVGSetElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10114,7 +10114,7 @@ class SVGStopElementWrappingImplementation extends SVGElementWrappingImplementat
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10154,7 +10154,7 @@ class SVGStringListWrappingImplementation extends DOMWrapperBase implements SVGS
return _ptr.replaceItem(item, index);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10171,7 +10171,7 @@ class SVGStylableWrappingImplementation extends DOMWrapperBase implements SVGSty
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10202,7 +10202,7 @@ class SVGStyleElementWrappingImplementation extends SVGElementWrappingImplementa
void set xmlspace(String value) { _ptr.xmlspace = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10273,7 +10273,7 @@ class SVGSwitchElementWrappingImplementation extends SVGElementWrappingImplement
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10312,7 +10312,7 @@ class SVGSymbolElementWrappingImplementation extends SVGElementWrappingImplement
SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewBox); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10325,7 +10325,7 @@ class SVGTRefElementWrappingImplementation extends SVGTextPositioningElementWrap
SVGAnimatedString get href() { return LevelDom.wrapSVGAnimatedString(_ptr.href); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10334,7 +10334,7 @@ class SVGTRefElementWrappingImplementation extends SVGTextPositioningElementWrap
class SVGTSpanElementWrappingImplementation extends SVGTextPositioningElementWrappingImplementation implements SVGTSpanElement {
SVGTSpanElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10353,7 +10353,7 @@ class SVGTestsWrappingImplementation extends DOMWrapperBase implements SVGTests
return _ptr.hasExtension(extension);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10439,7 +10439,7 @@ class SVGTextContentElementWrappingImplementation extends SVGElementWrappingImpl
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10474,7 +10474,7 @@ class SVGTextElementWrappingImplementation extends SVGTextPositioningElementWrap
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10493,7 +10493,7 @@ class SVGTextPathElementWrappingImplementation extends SVGTextContentElementWrap
SVGAnimatedString get href() { return LevelDom.wrapSVGAnimatedString(_ptr.href); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10512,7 +10512,7 @@ class SVGTextPositioningElementWrappingImplementation extends SVGTextContentElem
SVGAnimatedLengthList get y() { return LevelDom.wrapSVGAnimatedLengthList(_ptr.y); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10541,7 +10541,7 @@ class SVGTitleElementWrappingImplementation extends SVGElementWrappingImplementa
return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10589,7 +10589,7 @@ class SVGTransformListWrappingImplementation extends DOMWrapperBase implements S
return LevelDom.wrapSVGTransform(_ptr.replaceItem(LevelDom.unwrap(item), index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10634,7 +10634,7 @@ class SVGTransformWrappingImplementation extends DOMWrapperBase implements SVGTr
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10645,7 +10645,7 @@ class SVGTransformableWrappingImplementation extends SVGLocatableWrappingImpleme
SVGAnimatedTransformList get transform() { return LevelDom.wrapSVGAnimatedTransformList(_ptr.transform); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10656,7 +10656,7 @@ class SVGURIReferenceWrappingImplementation extends DOMWrapperBase implements SV
SVGAnimatedString get href() { return LevelDom.wrapSVGAnimatedString(_ptr.href); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10665,7 +10665,7 @@ class SVGURIReferenceWrappingImplementation extends DOMWrapperBase implements SV
class SVGUnitTypesWrappingImplementation extends DOMWrapperBase implements SVGUnitTypes {
SVGUnitTypesWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10752,7 +10752,7 @@ class SVGUseElementWrappingImplementation extends SVGElementWrappingImplementati
return LevelDom.wrapSVGMatrix(_ptr.getTransformToElement(LevelDom.unwrap(element)));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10761,7 +10761,7 @@ class SVGUseElementWrappingImplementation extends SVGElementWrappingImplementati
class SVGVKernElementWrappingImplementation extends SVGElementWrappingImplementation implements SVGVKernElement {
SVGVKernElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10788,7 +10788,7 @@ class SVGViewElementWrappingImplementation extends SVGElementWrappingImplementat
void set zoomAndPan(int value) { _ptr.zoomAndPan = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10815,7 +10815,7 @@ class SVGViewSpecWrappingImplementation extends SVGZoomAndPanWrappingImplementat
SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewBox); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10828,7 +10828,7 @@ class SVGZoomAndPanWrappingImplementation extends DOMWrapperBase implements SVGZ
void set zoomAndPan(int value) { _ptr.zoomAndPan = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10847,7 +10847,7 @@ class SVGZoomEventWrappingImplementation extends UIEventWrappingImplementation i
SVGRect get zoomRectScreen() { return LevelDom.wrapSVGRect(_ptr.zoomRectScreen); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10872,7 +10872,7 @@ class ScreenWrappingImplementation extends DOMWrapperBase implements Screen {
int get width() { return _ptr.width; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10913,7 +10913,7 @@ class ScriptElementWrappingImplementation extends ElementWrappingImplementation
void set type(String value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -10994,7 +10994,7 @@ class SelectElementWrappingImplementation extends ElementWrappingImplementation
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11015,7 +11015,7 @@ class SourceElementWrappingImplementation extends ElementWrappingImplementation
void set type(String value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11024,7 +11024,7 @@ class SourceElementWrappingImplementation extends ElementWrappingImplementation
class SpanElementWrappingImplementation extends ElementWrappingImplementation implements SpanElement {
SpanElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11035,7 +11035,7 @@ class SpeechInputEventWrappingImplementation extends EventWrappingImplementation
SpeechInputResultList get results() { return LevelDom.wrapSpeechInputResultList(_ptr.results); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11050,7 +11050,7 @@ class SpeechInputResultListWrappingImplementation extends DOMWrapperBase impleme
return LevelDom.wrapSpeechInputResult(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11063,7 +11063,7 @@ class SpeechInputResultWrappingImplementation extends DOMWrapperBase implements
String get utterance() { return _ptr.utterance; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11108,7 +11108,7 @@ class StorageInfoWrappingImplementation extends DOMWrapperBase implements Storag
throw "Incorrect number or type of arguments";
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11142,7 +11142,7 @@ class StorageWrappingImplementation extends DOMWrapperBase implements Storage {
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11165,7 +11165,7 @@ class StyleElementWrappingImplementation extends ElementWrappingImplementation i
void set type(String value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11180,7 +11180,7 @@ class StyleMediaWrappingImplementation extends DOMWrapperBase implements StyleMe
return _ptr.matchMedium(mediaquery);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11288,7 +11288,7 @@ class StyleSheetListWrappingImplementation extends DOMWrapperBase implements Sty
return LevelDom.wrapStyleSheet(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11313,7 +11313,7 @@ class StyleSheetWrappingImplementation extends DOMWrapperBase implements StyleSh
String get type() { return _ptr.type; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11326,7 +11326,7 @@ class TableCaptionElementWrappingImplementation extends ElementWrappingImplement
void set align(String value) { _ptr.align = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11393,7 +11393,7 @@ class TableCellElementWrappingImplementation extends ElementWrappingImplementati
void set width(String value) { _ptr.width = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11426,7 +11426,7 @@ class TableColElementWrappingImplementation extends ElementWrappingImplementatio
void set width(String value) { _ptr.width = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11523,7 +11523,7 @@ class TableElementWrappingImplementation extends ElementWrappingImplementation i
return LevelDom.wrapElement(_ptr.insertRow(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11567,7 +11567,7 @@ class TableRowElementWrappingImplementation extends ElementWrappingImplementatio
return LevelDom.wrapElement(_ptr.insertCell(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11603,7 +11603,7 @@ class TableSectionElementWrappingImplementation extends ElementWrappingImplement
return LevelDom.wrapElement(_ptr.insertRow(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11714,7 +11714,7 @@ class TextAreaElementWrappingImplementation extends ElementWrappingImplementatio
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11725,7 +11725,7 @@ class TextMetricsWrappingImplementation extends DOMWrapperBase implements TextMe
num get width() { return _ptr.width; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11744,7 +11744,7 @@ class TextTrackCueListWrappingImplementation extends DOMWrapperBase implements T
return LevelDom.wrapTextTrackCue(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11783,7 +11783,7 @@ class TextTrackCueWrappingImplementation extends DOMWrapperBase implements TextT
return _ptr.getCueAsSource();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11818,7 +11818,7 @@ class TextTrackWrappingImplementation extends DOMWrapperBase implements TextTrac
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11837,7 +11837,7 @@ class TimeRangesWrappingImplementation extends DOMWrapperBase implements TimeRan
return _ptr.start(index);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11850,7 +11850,7 @@ class TitleElementWrappingImplementation extends ElementWrappingImplementation i
void set text(String value) { _ptr.text = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11958,7 +11958,7 @@ class TouchListWrappingImplementation extends DOMWrapperBase implements TouchLis
return LevelDom.wrapTouch(_ptr.item(index));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -11991,7 +11991,7 @@ class TouchWrappingImplementation extends DOMWrapperBase implements Touch {
num get webkitRotationAngle() { return _ptr.webkitRotationAngle; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12022,7 +12022,7 @@ class TrackElementWrappingImplementation extends ElementWrappingImplementation i
TextTrack get track() { return LevelDom.wrapTextTrack(_ptr.track); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12039,7 +12039,7 @@ class UListElementWrappingImplementation extends ElementWrappingImplementation i
void set type(String value) { _ptr.type = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12058,7 +12058,7 @@ class Uint16ArrayWrappingImplementation extends ArrayBufferViewWrappingImplement
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12077,7 +12077,7 @@ class Uint32ArrayWrappingImplementation extends ArrayBufferViewWrappingImplement
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12096,7 +12096,7 @@ class Uint8ArrayWrappingImplementation extends ArrayBufferViewWrappingImplementa
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12105,7 +12105,7 @@ class Uint8ArrayWrappingImplementation extends ArrayBufferViewWrappingImplementa
class UnknownElementWrappingImplementation extends ElementWrappingImplementation implements UnknownElement {
UnknownElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12132,7 +12132,7 @@ class ValidityStateWrappingImplementation extends DOMWrapperBase implements Vali
bool get valueMissing() { return _ptr.valueMissing; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12185,7 +12185,7 @@ class VideoElementWrappingImplementation extends MediaElementWrappingImplementat
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12199,7 +12199,7 @@ class VoidCallbackWrappingImplementation extends DOMWrapperBase implements VoidC
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12212,7 +12212,7 @@ class WaveShaperNodeWrappingImplementation extends AudioNodeWrappingImplementati
void set curve(Float32Array value) { _ptr.curve = LevelDom.unwrap(value); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12227,7 +12227,7 @@ class WebGLActiveInfoWrappingImplementation extends DOMWrapperBase implements We
int get type() { return _ptr.type; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12236,7 +12236,7 @@ class WebGLActiveInfoWrappingImplementation extends DOMWrapperBase implements We
class WebGLBufferWrappingImplementation extends DOMWrapperBase implements WebGLBuffer {
WebGLBufferWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12269,7 +12269,7 @@ class WebGLContextAttributesWrappingImplementation extends DOMWrapperBase implem
void set stencil(bool value) { _ptr.stencil = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12280,7 +12280,7 @@ class WebGLContextEventWrappingImplementation extends EventWrappingImplementatio
String get statusMessage() { return _ptr.statusMessage; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12289,7 +12289,7 @@ class WebGLContextEventWrappingImplementation extends EventWrappingImplementatio
class WebGLDebugRendererInfoWrappingImplementation extends DOMWrapperBase implements WebGLDebugRendererInfo {
WebGLDebugRendererInfoWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12302,7 +12302,7 @@ class WebGLDebugShadersWrappingImplementation extends DOMWrapperBase implements
return _ptr.getTranslatedShaderSource(LevelDom.unwrap(shader));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12311,7 +12311,7 @@ class WebGLDebugShadersWrappingImplementation extends DOMWrapperBase implements
class WebGLFramebufferWrappingImplementation extends DOMWrapperBase implements WebGLFramebuffer {
WebGLFramebufferWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12320,7 +12320,7 @@ class WebGLFramebufferWrappingImplementation extends DOMWrapperBase implements W
class WebGLProgramWrappingImplementation extends DOMWrapperBase implements WebGLProgram {
WebGLProgramWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -12329,7 +12329,7 @@ class WebGLProgramWrappingImplementation extends DOMWrapperBase implements WebGL
class WebGLRenderbufferWrappingImplementation extends DOMWrapperBase implements WebGLRenderbuffer {
WebGLRenderbufferWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13059,7 +13059,7 @@ class WebGLRenderingContextWrappingImplementation extends CanvasRenderingContext
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13068,7 +13068,7 @@ class WebGLRenderingContextWrappingImplementation extends CanvasRenderingContext
class WebGLShaderWrappingImplementation extends DOMWrapperBase implements WebGLShader {
WebGLShaderWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13077,7 +13077,7 @@ class WebGLShaderWrappingImplementation extends DOMWrapperBase implements WebGLS
class WebGLTextureWrappingImplementation extends DOMWrapperBase implements WebGLTexture {
WebGLTextureWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13086,7 +13086,7 @@ class WebGLTextureWrappingImplementation extends DOMWrapperBase implements WebGL
class WebGLUniformLocationWrappingImplementation extends DOMWrapperBase implements WebGLUniformLocation {
WebGLUniformLocationWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13095,7 +13095,7 @@ class WebGLUniformLocationWrappingImplementation extends DOMWrapperBase implemen
class WebGLVertexArrayObjectOESWrappingImplementation extends DOMWrapperBase implements WebGLVertexArrayObjectOES {
WebGLVertexArrayObjectOESWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13106,7 +13106,7 @@ class WebKitCSSFilterValueWrappingImplementation extends CSSValueListWrappingImp
int get operationType() { return _ptr.operationType; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13120,7 +13120,7 @@ class WebKitMutationObserverWrappingImplementation extends DOMWrapperBase implem
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -13139,7 +13139,7 @@ class XMLHttpRequestExceptionWrappingImplementation extends DOMWrapperBase imple
return _ptr.toString();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18260,7 +18260,7 @@ class LevelDom {
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18312,7 +18312,7 @@ class _Collections {
return !iterable.iterator().hasNext();
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18341,7 +18341,7 @@ class PointFactoryProvider {
return new PointWrappingImplementation._wrap(new dom.WebKitPoint(x, y));
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18374,7 +18374,7 @@ class _VariableSizeListIterator<T> implements Iterator<T> {
final List<T> _list;
int _pos;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18425,7 +18425,7 @@ class _Lists {
return -1;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18445,7 +18445,7 @@ class AbstractWorkerWrappingImplementation extends EventTargetWrappingImplementa
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18478,7 +18478,7 @@ class AnimationEventWrappingImplementation extends EventWrappingImplementation i
num get elapsedTime() => _ptr.elapsedTime;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18494,7 +18494,7 @@ class BeforeLoadEventWrappingImplementation extends EventWrappingImplementation
String get url() => _ptr.url;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18527,7 +18527,7 @@ class BodyElementWrappingImplementation
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18547,7 +18547,7 @@ class CloseEventWrappingImplementation extends EventWrappingImplementation imple
bool get wasClean() => _ptr.wasClean;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18564,7 +18564,7 @@ class CompositionEventWrappingImplementation extends UIEventWrappingImplementati
String get data() => _ptr.data;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18667,6 +18667,7 @@ class _CssClassSet implements Set<String> {
* className property of this element.
*/
void _modify( f(Set<String> s)) {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_element));
Set<String> s = _read();
f(s);
_write(s);
@@ -18693,6 +18694,7 @@ class _CssClassSet implements Set<String> {
* back to the element.
*/
void _write(Set s) {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_element));
_element.className = _formatSet(s);
}
@@ -18704,7 +18706,7 @@ class _CssClassSet implements Set<String> {
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -18718,8 +18720,18 @@ class _CssClassSet implements Set<String> {
class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implements CSSStyleDeclaration {
static String _cachedBrowserPrefix;
-
- CSSStyleDeclarationWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
+ /**
+ * The element this style declaration is associated with if any. This
+ * should only be set to a non-null value if modifying this object
+ * will change the associated element. Thus this should not be set for
+ * computed styles.
+ */
+ final ElementWrappingImplementation _element;
+
+ CSSStyleDeclarationWrappingImplementation._wrap(ptr)
+ : super._wrap(ptr), _element = null;
+ CSSStyleDeclarationWrappingImplementation._wrapWithElement(
+ ptr, this._element) : super._wrap(ptr);
factory CSSStyleDeclarationWrappingImplementation.css(String css) {
var style = new Element.tag('div').style;
@@ -18738,14 +18750,21 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
} else {
_cachedBrowserPrefix = '-webkit-';
}
- // TODO(jacobr): support IE 9.0 and Opera as well.
+ // TODO(jacobr): support IE and Opera as well.
}
return _cachedBrowserPrefix;
}
- String get cssText() { return _ptr.cssText; }
+ String get cssText() =>_ptr.cssText;
- void set cssText(String value) { _ptr.cssText = value; }
+ bool get _inDocument() {
+ return _element !== null && _element._inDocument;
+ }
+
+ void set cssText(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.cssText = value;
+ }
int get length() { return _ptr.length; }
@@ -18776,16 +18795,15 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
}
String removeProperty(String propertyName) {
+ assert(!_inMeasurementFrame || !_inDocument);
return _ptr.removeProperty(propertyName);
}
void setProperty(String propertyName, String value, [String priority = '']) {
+ assert(!_inMeasurementFrame || !_inDocument);
_ptr.setProperty(propertyName, value, priority);
}
- String get typeName() { return "CSSStyleDeclaration"; }
-
-
/** Gets the value of "animation" */
String get animation() =>
getPropertyValue('${_browserPrefix}animation');
@@ -21549,7 +21567,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
setProperty('zoom', value, '');
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -21565,7 +21583,7 @@ class CustomEventWrappingImplementation extends EventWrappingImplementation impl
String get detail() => _ptr.detail;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -21647,7 +21665,7 @@ class _DataAttributeMap implements Map<String, String> {
String _strip(String key) => key.substring(5);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -21667,7 +21685,7 @@ class _Device {
*/
static bool get isFirefox() => userAgent.contains("Firefox", 0);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -21683,7 +21701,7 @@ class DeviceMotionEventWrappingImplementation extends EventWrappingImplementatio
num get interval() => _ptr.interval;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -21705,7 +21723,7 @@ class DeviceOrientationEventWrappingImplementation extends EventWrappingImplemen
num get gamma() => _ptr.gamma;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -21838,11 +21856,6 @@ class EmptyStyleDeclaration extends CSSStyleDeclarationWrappingImplementation {
}
}
-Future<CSSStyleDeclaration> _emptyStyleFuture() {
- return _createMeasurementFuture(() => new EmptyStyleDeclaration(),
- new Completer<CSSStyleDeclaration>());
-}
-
class EmptyElementRect implements ElementRect {
final ClientRect client = const SimpleClientRect(0, 0, 0, 0);
final ClientRect offset = const SimpleClientRect(0, 0, 0, 0);
@@ -21940,9 +21953,10 @@ class DocumentFragmentWrappingImplementation extends NodeWrappingImplementation
return _on;
}
- Future<ElementRect> get rect() {
- return _createMeasurementFuture(() => const EmptyElementRect(),
- new Completer<ElementRect>());
+ ElementRect get rect() {
+ // A document fragment can never be attached to a Document so it always
+ // safe to measure.
+ return const EmptyElementRect();
}
Element query(String selectors) =>
@@ -21975,10 +21989,9 @@ class DocumentFragmentWrappingImplementation extends NodeWrappingImplementation
Set<String> get classes() => new Set<String>();
Map<String, String> get dataAttributes() => const {};
CSSStyleDeclaration get style() => new EmptyStyleDeclaration();
- Future<CSSStyleDeclaration> get computedStyle() =>
- _emptyStyleFuture();
- Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) =>
- _emptyStyleFuture();
+ CSSStyleDeclaration get computedStyle() => new EmptyStyleDeclaration();
+ CSSStyleDeclaration getComputedStyle(String pseudoElement) =>
+ new EmptyStyleDeclaration();
bool matchesSelector([String selectors]) => false;
// Imperative Element methods are made into no-ops, as they are on parentless
@@ -22078,7 +22091,7 @@ class DocumentFragmentWrappingImplementation extends NodeWrappingImplementation
DocumentFragment clone(bool deep) => super.clone(deep);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -22132,7 +22145,10 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
Window get window() => LevelDom.wrapWindow(_documentPtr.defaultView);
/** @domName designMode */
- void set designMode(String value) { _documentPtr.dynamic.designMode = value; }
+ void set designMode(String value) {
+ assert(!_inMeasurementFrame);
+ _documentPtr.dynamic.designMode = value;
+ }
/** @domName domain */
String get domain() => _documentPtr.domain;
@@ -22165,10 +22181,9 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
String get webkitVisibilityState() => _documentPtr.webkitVisibilityState;
/** @domName caretRangeFromPoint */
- Future<Range> caretRangeFromPoint([int x = null, int y = null]) {
- return _createMeasurementFuture(
- () => LevelDom.wrapRange(_documentPtr.caretRangeFromPoint(x, y)),
- new Completer<Range>());
+ Range caretRangeFromPoint([int x = null, int y = null]) {
+ assert(_inMeasurementFrame);
+ return LevelDom.wrapRange(_documentPtr.caretRangeFromPoint(x, y));
}
/** @domName createEvent */
@@ -22177,14 +22192,14 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
}
/** @domName elementFromPoint */
- Future<Element> elementFromPoint([int x = null, int y = null]) {
- return _createMeasurementFuture(
- () => LevelDom.wrapElement(_documentPtr.elementFromPoint(x, y)),
- new Completer<Element>());
+ Element elementFromPoint([int x = null, int y = null]) {
+ assert(_inMeasurementFrame);
+ return LevelDom.wrapElement(_documentPtr.elementFromPoint(x, y));
}
/** @domName execCommand */
bool execCommand([String command = null, bool userInterface = null, String value = null]) {
+ assert(!_inMeasurementFrame);
return _documentPtr.execCommand(command, userInterface, value);
}
@@ -22223,7 +22238,10 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
String get manifest() => _ptr.manifest;
/** @domName HTMLHtmlElement.manifest */
- void set manifest(String value) { _ptr.manifest = value; }
+ void set manifest(String value) {
+ assert(!_inMeasurementFrame);
+ _ptr.manifest = value;
+ }
DocumentEvents get on() {
if (_on === null) {
@@ -22232,7 +22250,7 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -22270,7 +22288,7 @@ class DOMApplicationCacheWrappingImplementation extends EventTargetWrappingImple
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -22301,6 +22319,7 @@ class _ChildrenElementList implements ElementList {
: _childElements = element.children,
_element = element;
+ bool get _inDocument() => _nodeInDocument(_element);
List<Element> _toList() {
final output = new List(_childElements.length);
for (int i = 0, len = _childElements.length; i < len; i++) {
@@ -22360,6 +22379,7 @@ class _ChildrenElementList implements ElementList {
}
void operator []=(int index, Element value) {
+ assert(!_inMeasurementFrame || (!_inDocument && !value._inDocument));
_element.replaceChild(LevelDom.unwrap(value), _childElements.item(index));
}
@@ -22369,6 +22389,7 @@ class _ChildrenElementList implements ElementList {
}
Element add(Element value) {
+ assert(!_inMeasurementFrame || (!_inDocument && !value._inDocument));
_element.appendChild(LevelDom.unwrap(value));
return value;
}
@@ -22378,7 +22399,9 @@ class _ChildrenElementList implements ElementList {
Iterator<Element> iterator() => _toList().iterator();
void addAll(Collection<Element> collection) {
+ assert(!_inMeasurementFrame || !_inDocument);
for (Element element in collection) {
+ assert(!_inMeasurementFrame || !element._inDocument);
_element.appendChild(LevelDom.unwrap(element));
}
}
@@ -22417,11 +22440,13 @@ class _ChildrenElementList implements ElementList {
}
void clear() {
+ assert(!_inMeasurementFrame || !_inDocument);
// It is unclear if we want to keep non element nodes?
_element.textContent = '';
}
Element removeLast() {
+ assert(!_inMeasurementFrame || !_inDocument);
final last = this.last();
if (last != null) {
_element.removeChild(LevelDom.unwrap(last));
@@ -22601,10 +22626,12 @@ class ElementAttributeMap implements Map<String, String> {
}
String remove(String key) {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_element));
_element.removeAttribute(key);
}
void clear() {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_element));
final attributes = _element.attributes;
for (int i = attributes.length - 1; i >= 0; i--) {
_element.removeAttribute(attributes.item(i).name);
@@ -22723,48 +22750,52 @@ class SimpleClientRect implements ClientRect {
String toString() => "($left, $top, $width, $height)";
}
-// TODO(jacobr): we cannot currently be lazy about calculating the client
-// rects as we must perform all measurement queries at a safe point to avoid
-// triggering unneeded layouts.
/**
- * All your element measurement needs in one place
+ * All your element measurement needs in one place.
+ * All members of this class can only be cassed when inside a measurement
+ * frame or when the element is not attached to the DOM.
* @domName none
*/
class ElementRectWrappingImplementation implements ElementRect {
- final ClientRect client;
- final ClientRect offset;
- final ClientRect scroll;
-
- // TODO(jacobr): should we move these outside of ElementRect to avoid the
- // overhead of computing them every time even though they are rarely used.
- // This should be type dom.ClientRect but that fails on dartium. b/5522629
- final _boundingClientRect;
- // an exception due to a dartium bug.
- final _clientRects; // TODO(jacobr): should be dom.ClientRectList
-
- ElementRectWrappingImplementation(dom.HTMLElement element) :
- client = new SimpleClientRect(element.clientLeft,
- element.clientTop,
- element.clientWidth,
- element.clientHeight),
- offset = new SimpleClientRect(element.offsetLeft,
- element.offsetTop,
- element.offsetWidth,
- element.offsetHeight),
- scroll = new SimpleClientRect(element.scrollLeft,
- element.scrollTop,
- element.scrollWidth,
- element.scrollHeight),
- _boundingClientRect = element.getBoundingClientRect(),
- _clientRects = element.getClientRects();
-
- ClientRect get bounding() =>
- LevelDom.wrapClientRect(_boundingClientRect);
+ final dom.HTMLElement _element;
+
+ ElementRectWrappingImplementation(this._element);
+
+ ClientRect get client() {
+ assert(window.inMeasurementFrame || !_nodeInDocument(_element));
+ return new SimpleClientRect(_element.clientLeft,
+ _element.clientTop,
+ _element.clientWidth,
+ _element.clientHeight);
+ }
+
+ ClientRect get offset() {
+ assert(window.inMeasurementFrame || !_nodeInDocument(_element));
+ return new SimpleClientRect(_element.offsetLeft,
+ _element.offsetTop,
+ _element.offsetWidth,
+ _element.offsetHeight);
+ }
+
+ ClientRect get scroll() {
+ assert(window.inMeasurementFrame || !_nodeInDocument(_element));
+ return new SimpleClientRect(_element.scrollLeft,
+ _element.scrollTop,
+ _element.scrollWidth,
+ _element.scrollHeight);
+ }
+
+ ClientRect get bounding() {
+ assert(window.inMeasurementFrame || !_nodeInDocument(_element));
+ return LevelDom.wrapClientRect(_element.getBoundingClientRect());
+ }
List<ClientRect> get clientRects() {
- final out = new List(_clientRects.length);
- for (num i = 0; i < _clientRects.length; i++) {
- out[i] = LevelDom.wrapClientRect(_clientRects.item(i));
+ assert(window.inMeasurementFrame || !_nodeInDocument(_element));
+ final clientRects = _element.getClientRects();
+ final out = new List(clientRects.length);
+ for (num i = 0, len = clientRects.length; i < len; i++) {
+ out[i] = LevelDom.wrapClientRect(clientRects.item(i));
}
return out;
}
@@ -22848,6 +22879,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
}
void set attributes(Map<String, String> value) {
+ assert(!_inMeasurementFrame || !_inDocument);
Map<String, String> attributes = this.attributes;
attributes.clear();
for (String key in value.getKeys()) {
@@ -22856,6 +22888,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
}
void set elements(Collection<Element> value) {
+ assert(!_inMeasurementFrame || !_inDocument);
final elements = this.elements;
elements.clear();
elements.addAll(value);
@@ -22881,6 +22914,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
}
void set classes(Collection<String> value) {
+ assert(!_inMeasurementFrame || !_inDocument);
_CssClassSet classSet = classes;
classSet.clear();
classSet.addAll(value);
@@ -22894,6 +22928,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
}
void set dataAttributes(Map<String, String> value) {
+ assert(!_inMeasurementFrame || !_inDocument);
Map<String, String> dataAttributes = this.dataAttributes;
dataAttributes.clear();
for (String key in value.getKeys()) {
@@ -22903,11 +22938,15 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
String get contentEditable() => _ptr.contentEditable;
+ // TODO(jacobr): does this dirty the layout?
void set contentEditable(String value) { _ptr.contentEditable = value; }
String get dir() => _ptr.dir;
- void set dir(String value) { _ptr.dir = value; }
+ void set dir(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.dir = value;
+ }
bool get draggable() => _ptr.draggable;
@@ -22917,21 +22956,33 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
bool get hidden() => _ptr.hidden;
- void set hidden(bool value) { _ptr.hidden = value; }
+ void set hidden(bool value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.hidden = value;
+ }
String get id() => _ptr.id;
- void set id(String value) { _ptr.id = value; }
+ void set id(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.id = value;
+ }
String get innerHTML() => _ptr.innerHTML;
- void set innerHTML(String value) { _ptr.innerHTML = value; }
+ void set innerHTML(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.innerHTML = value;
+ }
bool get isContentEditable() => _ptr.isContentEditable;
String get lang() => _ptr.lang;
- void set lang(String value) { _ptr.lang = value; }
+ void set lang(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.lang = value;
+ }
Element get lastElementChild() => LevelDom.wrapElement(_ptr.lastElementChild);
@@ -22945,25 +22996,46 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
bool get spellcheck() => _ptr.spellcheck;
- void set spellcheck(bool value) { _ptr.spellcheck = value; }
+ void set spellcheck(bool value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.spellcheck = value;
+ }
- CSSStyleDeclaration get style() => LevelDom.wrapCSSStyleDeclaration(_ptr.style);
+ CSSStyleDeclaration get style() {
+ // Changes to this CSSStyleDeclaration dirty the layout so we must pass
+ // the associated Element to the CSSStyleDeclaration constructor so that
+ // we can compute whether the current element is attached to the document
+ // which is required to decide whether modification inside a measurement
+ // frame is allowed.
+ final raw = _ptr.style;
+ return raw.dartObjectLocalStorage !== null ?
+ raw.dartObjectLocalStorage :
+ new CSSStyleDeclarationWrappingImplementation._wrapWithElement(
+ raw, this);
+ }
int get tabIndex() => _ptr.tabIndex;
- void set tabIndex(int value) { _ptr.tabIndex = value; }
+ void set tabIndex(int value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.tabIndex = value;
+ }
String get tagName() => _ptr.tagName;
String get title() => _ptr.title;
- void set title(String value) { _ptr.title = value; }
+ void set title(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.title = value;
+ }
String get webkitdropzone() => _ptr.webkitdropzone;
void set webkitdropzone(String value) { _ptr.webkitdropzone = value; }
void blur() {
+ assert(!_inMeasurementFrame || !_inDocument);
_ptr.blur();
}
@@ -22972,18 +23044,22 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
}
void focus() {
+ assert(!_inMeasurementFrame || !_inDocument);
_ptr.focus();
}
Element insertAdjacentElement([String where = null, Element element = null]) {
+ assert(!_inMeasurementFrame || !_inDocument);
return LevelDom.wrapElement(_ptr.insertAdjacentElement(where, LevelDom.unwrap(element)));
}
void insertAdjacentHTML([String position_OR_where = null, String text = null]) {
+ assert(!_inMeasurementFrame || !_inDocument);
_ptr.insertAdjacentHTML(position_OR_where, text);
}
void insertAdjacentText([String where = null, String text = null]) {
+ assert(!_inMeasurementFrame || !_inDocument);
_ptr.insertAdjacentText(where, text);
}
@@ -23028,24 +23104,21 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
* clientTop, clientLeft, offsetHeight, offsetWidth, offsetTop, offsetLeft,
* scrollHeight, scrollWidth, scrollTop, scrollLeft
*/
- Future<ElementRect> get rect() {
- return _createMeasurementFuture(
- () => new ElementRectWrappingImplementation(_ptr),
- new Completer<ElementRect>());
+ ElementRect get rect() {
+ return new ElementRectWrappingImplementation(_ptr);
}
/** @domName Window.getComputedStyle */
- Future<CSSStyleDeclaration> get computedStyle() {
+ CSSStyleDeclaration get computedStyle() {
// TODO(jacobr): last param should be null, see b/5045788
- return getComputedStyle('');
+ return getComputedStyle('');
}
/** @domName Window.getComputedStyle */
- Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) {
- return _createMeasurementFuture(() =>
- LevelDom.wrapCSSStyleDeclaration(
- dom.window.getComputedStyle(_ptr, pseudoElement)),
- new Completer<CSSStyleDeclaration>());
+ CSSStyleDeclaration getComputedStyle(String pseudoElement) {
+ assert(window.inMeasurementFrame || !_inDocument);
+ return LevelDom.wrapCSSStyleDeclaration(
+ dom.window.getComputedStyle(_ptr, pseudoElement));
}
ElementEvents get on() {
@@ -23057,7 +23130,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
Element clone(bool deep) => super.clone(deep);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23078,7 +23151,7 @@ class ErrorEventWrappingImplementation extends EventWrappingImplementation imple
String get message() => _ptr.message;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23108,7 +23181,7 @@ class EventSourceWrappingImplementation extends EventTargetWrappingImplementatio
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23121,7 +23194,7 @@ class EventsImplementation implements Events {
EventsImplementation._wrap(this._ptr) {
// TODO(sigmund): the key type (String) yields a warning in frog and the vm,
// but it is currently necessary to compile with dartc.
- _listenerMap = <String, EventListenerList>{};
+ _listenerMap = new Map<String, EventListenerList>();
}
EventListenerList operator [](String type) {
@@ -23228,7 +23301,7 @@ class EventTargetWrappingImplementation extends DOMWrapperBase implements EventT
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23283,7 +23356,7 @@ class EventWrappingImplementation extends DOMWrapperBase implements Event {
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23301,7 +23374,7 @@ class HashChangeEventWrappingImplementation extends EventWrappingImplementation
String get oldURL() => _ptr.oldURL;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23337,23 +23410,15 @@ class KeyboardEventWrappingImplementation extends UIEventWrappingImplementation
return _ptr.getModifierState(keyIdentifierArg);
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
-typedef Object ComputeValue();
-
-class _MeasurementRequest<T> {
- final ComputeValue computeValue;
- final Completer<T> completer;
- Object value;
- bool exception = false;
- _MeasurementRequest(this.computeValue, this.completer);
-}
+bool _inMeasurementFrame = false;
final _MEASUREMENT_MESSAGE = "DART-MEASURE";
-List<_MeasurementRequest> _pendingRequests;
-List<TimeoutHandler> _pendingMeasurementFrameCallbacks;
+
+Queue<MeasurementCallback> _pendingMeasurementFrameCallbacks;
bool _nextMeasurementFrameScheduled = false;
bool _firstMeasurementRequest = true;
@@ -23366,9 +23431,9 @@ void _maybeScheduleMeasurementFrame() {
if (_firstMeasurementRequest) {
// Messages from other windows do not cause a security risk as
// all we care about is that _onCompleteMeasurementRequests is called
- // after the current event loop is unwound and calling the function is
- // a noop when zero requests are pending.
- window.on.message.add((e) => _completeMeasurementFutures());
+ // after the current event loop is unwound and calling
+ // _runMeasurementFrames is a noop when zero requests are pending.
+ window.on.message.add((e) => _runMeasurementFrames());
_firstMeasurementRequest = false;
}
@@ -23385,79 +23450,56 @@ void _maybeScheduleMeasurementFrame() {
* when they would have completed to avoid confusing bugs if it happened that
* no measurements were actually requested.
*/
-void _addMeasurementFrameCallback(TimeoutHandler callback) {
+void _addMeasurementFrameCallback(MeasurementCallback callback) {
+ assert(callback != null);
if (_pendingMeasurementFrameCallbacks === null) {
- _pendingMeasurementFrameCallbacks = <TimeoutHandler>[];
- _maybeScheduleMeasurementFrame();
+ _pendingMeasurementFrameCallbacks = new Queue<MeasurementCallback>();
}
+ _maybeScheduleMeasurementFrame();
_pendingMeasurementFrameCallbacks.add(callback);
}
/**
- * Returns a [Future] whose value will be the result of evaluating
- * [computeValue] during the next safe measurement interval.
- * The next safe measurement interval is after the current event loop has
- * unwound but before the browser has rendered the page.
- * It is important that the [computeValue] function only queries the html
- * layout and html in any way.
- */
-Future _createMeasurementFuture(ComputeValue computeValue,
- Completer completer) {
- if (_pendingRequests === null) {
- _pendingRequests = <_MeasurementRequest>[];
- _maybeScheduleMeasurementFrame();
- }
- _pendingRequests.add(new _MeasurementRequest(computeValue, completer));
- return completer.future;
-}
-
-/**
- * Complete all pending measurement futures evaluating them in a single batch
+ * Run all pending measurement frames evaluating them in a single batch
* so that the the browser is guaranteed to avoid multiple layouts.
*/
-void _completeMeasurementFutures() {
- if (_nextMeasurementFrameScheduled == false) {
+void _runMeasurementFrames() {
+ if (_nextMeasurementFrameScheduled == false || _inMeasurementFrame) {
// Ignore spurious call to this function.
return;
}
- _nextMeasurementFrameScheduled = false;
- // We must compute all new values before fulfilling the futures as
- // the onComplete callbacks for the futures could modify the DOM making
- // subsequent measurement calculations expensive to compute.
- if (_pendingRequests !== null) {
- for (_MeasurementRequest request in _pendingRequests) {
- try {
- request.value = request.computeValue();
- } catch(var e) {
- request.value = e;
- request.exception = true;
- }
- }
- }
+ _inMeasurementFrame = true;
- final completedRequests = _pendingRequests;
- final readyMeasurementFrameCallbacks = _pendingMeasurementFrameCallbacks;
- _pendingRequests = null;
- _pendingMeasurementFrameCallbacks = null;
- if (completedRequests !== null) {
- for (_MeasurementRequest request in completedRequests) {
- if (request.exception) {
- request.completer.completeException(request.value);
- } else {
- request.completer.complete(request.value);
+ final layoutCallbacks = <LayoutCallback>[];
+ while (!_pendingMeasurementFrameCallbacks.isEmpty()) {
+ MeasurementCallback measurementCallback =
+ _pendingMeasurementFrameCallbacks.removeFirst();
+ try {
+ final layoutCallback = measurementCallback();
+ if (layoutCallback != null) {
+ layoutCallbacks.add(layoutCallback);
}
+ } catch (Object e) {
+ window.console.error(
+ 'Caught exception in measurement frame callback: ${e}');
+ // TODO(jacobr): throw this exception again in the correct way.
}
}
- if (readyMeasurementFrameCallbacks !== null) {
- for (TimeoutHandler handler in readyMeasurementFrameCallbacks) {
- // TODO(jacobr): wrap each call to a handler in a try-catch block.
- handler();
+ _inMeasurementFrame = false;
+ _nextMeasurementFrameScheduled = false;
+
+ for (LayoutCallback layoutCallback in layoutCallbacks) {
+ try {
+ layoutCallback();
+ } catch (Object e) {
+ window.console.error('Caught exception in layout callback: ${e}');
+ // TODO(jacobr): throw this exception again in the correct way.
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23483,14 +23525,14 @@ class MessageEventWrappingImplementation extends EventWrappingImplementation imp
Window get source() => LevelDom.wrapWindow(_ptr.source);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
class MessagePortWrappingImplementation extends EventTargetWrappingImplementation implements MessagePort {
MessagePortWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23541,7 +23583,7 @@ class MouseEventWrappingImplementation extends UIEventWrappingImplementation imp
int get y() => _ptr.y;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23568,10 +23610,20 @@ class MutationEventWrappingImplementation extends EventWrappingImplementation im
Node get relatedNode() => LevelDom.wrapNode(_ptr.relatedNode);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
+// TODO(jacobr): we could write this method more efficiently if we wanted to
+// however performance isn't crucial as it is only called when a method is
+// called from an atypical context (e.g. measurement method called outside of
+// requestMeasurementFrame or dom manipulation called within
+// requestMeasurementFrame).
+bool _nodeInDocument(var node) {
+//bool _nodeInDocument(dom.Node node) {
+ return LevelDom.wrapNode(node).dynamic._inDocument; // XXX remove dynamic
+}
+
class _ChildrenNodeList implements NodeList {
// Raw node.
final _node;
@@ -23646,12 +23698,16 @@ class _ChildrenNodeList implements NodeList {
/** @domName Node.appendChild */
Node add(Node value) {
+ assert(!_inMeasurementFrame
+ || (!_nodeInDocument(_node) && !value._inDocument));
_node.appendChild(LevelDom.unwrap(value));
return value;
}
Node addLast(Node value) {
- _node.appendChild(LevelDom.unwrap(value));
+ assert(!_inMeasurementFrame
+ || (!_nodeInDocument(_node) && !value._inDocument));
+ _node.appendChild(LevelDom.unwrap(value));
return value;
}
@@ -23660,7 +23716,9 @@ class _ChildrenNodeList implements NodeList {
}
void addAll(Collection<Node> collection) {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_node));
for (Node node in collection) {
+ assert(!_inMeasurementFrame || !node._inDocument);
_node.appendChild(LevelDom.unwrap(node));
}
}
@@ -23699,10 +23757,12 @@ class _ChildrenNodeList implements NodeList {
}
void clear() {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_node));
_node.textContent = '';
}
Node removeLast() {
+ assert(!_inMeasurementFrame || !_nodeInDocument(_node));
final last = this.last();
if (last != null) {
_node.removeChild(LevelDom.unwrap(last));
@@ -23721,6 +23781,7 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
NodeWrappingImplementation._wrap(ptr) : super._wrap(ptr);
void set nodes(Collection<Node> value) {
+ assert(!_inMeasurementFrame || !_inDocument);
// Copy list first since we don't want liveness during iteration.
List copy = new List.from(value);
nodes.clear();
@@ -23744,10 +23805,14 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
String get text() => _ptr.textContent;
- void set text(String value) { _ptr.textContent = value; }
+ void set text(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.textContent = value;
+ }
// New methods implemented.
Node replaceWith(Node otherNode) {
+ assert(!_inMeasurementFrame || !_inDocument);
try {
_ptr.parentNode.replaceChild(LevelDom.unwrap(otherNode), _ptr);
} catch(var e) {
@@ -23757,6 +23822,7 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
}
Node remove() {
+ assert(!_inMeasurementFrame || !_inDocument);
// TODO(jacobr): should we throw an exception if parent is already null?
if (_ptr.parentNode !== null) {
_ptr.parentNode.removeChild(_ptr);
@@ -23777,6 +23843,7 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
// insertBefore or we switch NodeList to implement LinkedList rather than
// array.
Node insertBefore(Node newChild, Node refChild) {
+ assert(!_inMeasurementFrame || !_inDocument);
return LevelDom.wrapNode(_ptr.insertBefore(
LevelDom.unwrap(newChild), LevelDom.unwrap(refChild)));
}
@@ -23784,8 +23851,12 @@ class NodeWrappingImplementation extends EventTargetWrappingImplementation imple
Node clone(bool deep) {
return LevelDom.wrapNode(_ptr.cloneNode(deep));
}
+
+ bool get _inDocument() {
+ return document.contains(this);
+ }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23829,7 +23900,7 @@ class NotificationWrappingImplementation extends EventTargetWrappingImplementati
String get typeName() { return "Notification"; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23919,7 +23990,7 @@ class ObjectElementWrappingImplementation extends ElementWrappingImplementation
return;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23940,7 +24011,7 @@ class OverflowEventWrappingImplementation extends EventWrappingImplementation im
bool get verticalOverflow() => _ptr.verticalOverflow;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23957,7 +24028,7 @@ class PageTransitionEventWrappingImplementation extends EventWrappingImplementat
bool get persisted() => _ptr.persisted;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23973,7 +24044,7 @@ class PopStateEventWrappingImplementation extends EventWrappingImplementation im
String get state() => _ptr.state;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -23995,7 +24066,7 @@ class ProgressEventWrappingImplementation extends EventWrappingImplementation im
int get total() => _ptr.total;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24004,7 +24075,7 @@ class SharedWorkerWrappingImplementation extends AbstractWorkerWrappingImplement
MessagePort get port() { return LevelDom.wrapMessagePort(_ptr.port); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24031,7 +24102,7 @@ class StorageEventWrappingImplementation extends EventWrappingImplementation imp
String get url() => _ptr.url;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24040,7 +24111,7 @@ class StorageEventWrappingImplementation extends EventWrappingImplementation imp
class SVGDocumentWrappingImplementation extends DocumentWrappingImplementation implements SVGDocument {
SVGDocumentWrappingImplementation._wrap(dom.SVGDocument ptr) : super._wrap(ptr, ptr.rootElement);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24069,7 +24140,10 @@ class SVGElementWrappingImplementation extends ElementWrappingImplementation imp
String get id() { return _ptr.id; }
- void set id(String value) { _ptr.id = value; }
+ void set id(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.id = value;
+ }
SVGSVGElement get ownerSVGElement() { return LevelDom.wrapSVGSVGElement(_ptr.ownerSVGElement); }
@@ -24077,7 +24151,10 @@ class SVGElementWrappingImplementation extends ElementWrappingImplementation imp
String get xmlbase() { return _ptr.xmlbase; }
- void set xmlbase(String value) { _ptr.xmlbase = value; }
+ void set xmlbase(String value) {
+ assert(!_inMeasurementFrame || !_inDocument);
+ _ptr.xmlbase = value;
+ }
ElementList get elements() {
if (_elements == null) {
@@ -24088,6 +24165,7 @@ class SVGElementWrappingImplementation extends ElementWrappingImplementation imp
// TODO: The type of value should be Collection<Element>. See http://b/5392897
void set elements(value) {
+ assert(!_inMeasurementFrame || !_inDocument);
final elements = this.elements;
elements.clear();
elements.addAll(value);
@@ -24106,6 +24184,7 @@ class SVGElementWrappingImplementation extends ElementWrappingImplementation imp
}
void set innerHTML(String svg) {
+ assert(!_inMeasurementFrame || !_inDocument);
var container = new Element.tag("div");
// Wrap the SVG string in <svg> so that SVGElements are created, rather than
// HTMLElements.
@@ -24115,7 +24194,7 @@ class SVGElementWrappingImplementation extends ElementWrappingImplementation imp
SVGElement clone(bool deep) => super.clone(deep);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24141,7 +24220,7 @@ class SVGElementInstanceWrappingImplementation extends EventTargetWrappingImplem
SVGElementInstance get previousSibling() { return LevelDom.wrapSVGElementInstance(_ptr.previousSibling); }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24360,7 +24439,7 @@ class SVGSVGElementWrappingImplementation extends SVGElementWrappingImplementati
void set zoomAndPan(int value) { _ptr.zoomAndPan = value; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24376,7 +24455,7 @@ class TextEventWrappingImplementation extends UIEventWrappingImplementation impl
String get data() => _ptr.data;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24392,6 +24471,7 @@ class TextWrappingImplementation extends CharacterDataWrappingImplementation imp
String get wholeText() => _ptr.wholeText;
Text replaceWholeText([String content = null]) {
+ assert(!_inMeasurementFrame || !_inDocument);
if (content === null) {
return LevelDom.wrapText(_ptr.replaceWholeText());
} else {
@@ -24400,6 +24480,7 @@ class TextWrappingImplementation extends CharacterDataWrappingImplementation imp
}
Text splitText([int offset = null]) {
+ assert(!_inMeasurementFrame || !_inDocument);
if (offset === null) {
return LevelDom.wrapText(_ptr.splitText());
} else {
@@ -24407,7 +24488,7 @@ class TextWrappingImplementation extends CharacterDataWrappingImplementation imp
}
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24439,7 +24520,7 @@ class TouchEventWrappingImplementation extends UIEventWrappingImplementation imp
TouchList get touches() => LevelDom.wrapTouchList(_ptr.touches);
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24473,7 +24554,7 @@ class TransitionEventWrappingImplementation extends EventWrappingImplementation
String get propertyName() => _ptr.propertyName;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24505,7 +24586,7 @@ class UIEventWrappingImplementation extends EventWrappingImplementation implemen
int get which() => _ptr.which;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24552,7 +24633,7 @@ class WebSocketWrappingImplementation extends EventTargetWrappingImplementation
String get typeName() { return "WebSocket"; }
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -24598,7 +24679,7 @@ class WheelEventWrappingImplementation extends UIEventWrappingImplementation imp
int get y() => _ptr.y;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -25403,6 +25484,7 @@ class WindowWrappingImplementation extends EventTargetWrappingImplementation imp
}
Point webkitConvertPointFromNodeToPage([Node node = null, Point p = null]) {
+ assert(_inMeasurementFrame);
if (node === null) {
if (p === null) {
return LevelDom.wrapPoint(_ptr.webkitConvertPointFromNodeToPage());
@@ -25418,6 +25500,7 @@ class WindowWrappingImplementation extends EventTargetWrappingImplementation imp
}
Point webkitConvertPointFromPageToNode([Node node = null, Point p = null]) {
+ assert(_inMeasurementFrame);
if (node === null) {
if (p === null) {
return LevelDom.wrapPoint(_ptr.webkitConvertPointFromPageToNode());
@@ -25436,10 +25519,12 @@ class WindowWrappingImplementation extends EventTargetWrappingImplementation imp
return _ptr.webkitRequestAnimationFrame(callback, LevelDom.unwrap(element));
}
- void requestLayoutFrame(TimeoutHandler callback) {
+ void requestMeasurementFrame(MeasurementCallback callback) {
_addMeasurementFrameCallback(callback);
}
+ bool get inMeasurementFrame() => _inMeasurementFrame;
+
WindowEvents get on() {
if (_on === null) {
_on = new WindowEventsImplementation._wrap(_ptr);
@@ -25447,7 +25532,7 @@ class WindowWrappingImplementation extends EventTargetWrappingImplementation imp
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -25483,7 +25568,7 @@ class WorkerWrappingImplementation extends EventTargetWrappingImplementation imp
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -25503,7 +25588,7 @@ class XMLHttpRequestProgressEventWrappingImplementation extends ProgressEventWra
int get totalSize() => _ptr.totalSize;
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
@@ -25528,7 +25613,7 @@ class XMLHttpRequestUploadWrappingImplementation extends EventTargetWrappingImpl
return _on;
}
}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.

Powered by Google App Engine
This is Rietveld 408576698