| Index: client/dom/generated/wrapping_dom.js
|
| diff --git a/client/dom/generated/wrapping_dom.js b/client/dom/generated/wrapping_dom.js
|
| index fd1c30774920169fd98bbe1e64977b61b89d791b..adcb42890ac84d6025632ba3b8f4eb47dbe6c9b6 100644
|
| --- a/client/dom/generated/wrapping_dom.js
|
| +++ b/client/dom/generated/wrapping_dom.js
|
| @@ -4486,22 +4486,6 @@ function native__DOMWindowWrappingImplementation__open_2(_this, url, name, optio
|
| }
|
| }
|
|
|
| -function native__DOMWindowWrappingImplementation__openDatabase(_this, name, version, displayName, estimatedSize) {
|
| - try {
|
| - return __dom_wrap(_this.$dom.openDatabase(__dom_unwrap(name), __dom_unwrap(version), __dom_unwrap(displayName), __dom_unwrap(estimatedSize)));
|
| - } catch (e) {
|
| - throw __dom_wrap_exception(e);
|
| - }
|
| -}
|
| -
|
| -function native__DOMWindowWrappingImplementation__openDatabase_2(_this, name, version, displayName, estimatedSize, creationCallback) {
|
| - try {
|
| - return __dom_wrap(_this.$dom.openDatabase(__dom_unwrap(name), __dom_unwrap(version), __dom_unwrap(displayName), __dom_unwrap(estimatedSize), __dom_unwrap(creationCallback)));
|
| - } catch (e) {
|
| - throw __dom_wrap_exception(e);
|
| - }
|
| -}
|
| -
|
| function native__DOMWindowWrappingImplementation__postMessage(_this, message, targetOrigin) {
|
| try {
|
| return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message), __dom_unwrap(targetOrigin)));
|
| @@ -19710,9 +19694,9 @@ function native__PerformanceTimingWrappingImplementation__get_unloadEventStart(_
|
| }
|
| }
|
|
|
| -function native__PointerLockWrappingImplementation__isLocked(_this) {
|
| +function native__PointerLockWrappingImplementation__get_isLocked(_this) {
|
| try {
|
| - return __dom_wrap(_this.$dom.isLocked());
|
| + return __dom_wrap(_this.$dom.isLocked);
|
| } catch (e) {
|
| throw __dom_wrap_exception(e);
|
| }
|
| @@ -30886,6 +30870,22 @@ function native__TextTrackCueWrappingImplementation__set_startTime(_this, value)
|
| }
|
| }
|
|
|
| +function native__TextTrackCueWrappingImplementation__get_text(_this) {
|
| + try {
|
| + return __dom_wrap(_this.$dom.text);
|
| + } catch (e) {
|
| + throw __dom_wrap_exception(e);
|
| + }
|
| +}
|
| +
|
| +function native__TextTrackCueWrappingImplementation__set_text(_this, value) {
|
| + try {
|
| + _this.$dom.text = __dom_unwrap(value);
|
| + } catch (e) {
|
| + throw __dom_wrap_exception(e);
|
| + }
|
| +}
|
| +
|
| function native__TextTrackCueWrappingImplementation__get_textPosition(_this) {
|
| try {
|
| return __dom_wrap(_this.$dom.textPosition);
|
| @@ -30942,14 +30942,6 @@ function native__TextTrackCueWrappingImplementation__getCueAsHTML(_this) {
|
| }
|
| }
|
|
|
| -function native__TextTrackCueWrappingImplementation__getCueAsSource(_this) {
|
| - try {
|
| - return __dom_wrap(_this.$dom.getCueAsSource());
|
| - } catch (e) {
|
| - throw __dom_wrap_exception(e);
|
| - }
|
| -}
|
| -
|
| function native__TextTrackCueWrappingImplementation__removeEventListener(_this, type, listener) {
|
| try {
|
| return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_unwrap(listener)));
|
|
|