Index: client/dom/frog/dom_frog.dart |
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart |
index fe3a539fb54eca99016f3b1bd674096757bd6b78..4950aa86507abeb1040d5560786cb5ed0c9c4b9e 100644 |
--- a/client/dom/frog/dom_frog.dart |
+++ b/client/dom/frog/dom_frog.dart |
@@ -3302,6 +3302,12 @@ class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement |
class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement native "*HTMLMediaElement" { |
+ static final int EOS_DECODE_ERR = 2; |
+ |
+ static final int EOS_NETWORK_ERR = 1; |
+ |
+ static final int EOS_NO_ERROR = 0; |
+ |
static final int HAVE_CURRENT_DATA = 2; |
static final int HAVE_ENOUGH_DATA = 4; |
@@ -3320,6 +3326,12 @@ class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat |
static final int NETWORK_NO_SOURCE = 3; |
+ static final int SOURCE_CLOSED = 0; |
+ |
+ static final int SOURCE_ENDED = 2; |
+ |
+ static final int SOURCE_OPEN = 1; |
+ |
bool autoplay; |
final _TimeRangesJs buffered; |
@@ -3908,6 +3920,8 @@ class _HTMLTitleElementJs extends _HTMLElementJs implements HTMLTitleElement nat |
class _HTMLTrackElementJs extends _HTMLElementJs implements HTMLTrackElement native "*HTMLTrackElement" { |
+ static final int ERROR = 3; |
+ |
static final int LOADED = 2; |
static final int LOADING = 1; |
@@ -9223,7 +9237,7 @@ class _StorageJs extends _DOMTypeJs implements Storage native "*Storage" { |
// captures what would normally be an expando and places property in the |
// storage, stringifying the assigned value. |
- var get dartObjectLocalStorage() native """ |
+ get dartObjectLocalStorage() native """ |
if (this === window.localStorage) |
return window._dartLocalStorageLocalStorage; |
else if (this === window.sessionStorage) |
@@ -15545,6 +15559,12 @@ interface HTMLMarqueeElement extends HTMLElement { |
interface HTMLMediaElement extends HTMLElement { |
+ static final int EOS_DECODE_ERR = 2; |
+ |
+ static final int EOS_NETWORK_ERR = 1; |
+ |
+ static final int EOS_NO_ERROR = 0; |
+ |
static final int HAVE_CURRENT_DATA = 2; |
static final int HAVE_ENOUGH_DATA = 4; |
@@ -15563,6 +15583,12 @@ interface HTMLMediaElement extends HTMLElement { |
static final int NETWORK_NO_SOURCE = 3; |
+ static final int SOURCE_CLOSED = 0; |
+ |
+ static final int SOURCE_ENDED = 2; |
+ |
+ static final int SOURCE_OPEN = 1; |
+ |
bool autoplay; |
final TimeRanges buffered; |
@@ -16301,6 +16327,8 @@ interface HTMLTitleElement extends HTMLElement { |
interface HTMLTrackElement extends HTMLElement { |
+ static final int ERROR = 3; |
+ |
static final int LOADED = 2; |
static final int LOADING = 1; |