| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 63328c47e208318bf211864de82ea7b87417366c..e35b74a77d30f9ee693ec4b66d355a2f51a62e65 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -13369,14 +13369,6 @@ class HtmlDocument extends Document {
|
| _title = value;
|
| }
|
|
|
| - @DomName('Document.webkitCancelFullScreen')
|
| - @SupportedBrowser(SupportedBrowser.CHROME)
|
| - @SupportedBrowser(SupportedBrowser.SAFARI)
|
| - @Experimental()
|
| - void cancelFullScreen() {
|
| - _webkitCancelFullScreen();
|
| - }
|
| -
|
| @DomName('Document.webkitExitFullscreen')
|
| @SupportedBrowser(SupportedBrowser.CHROME)
|
| @SupportedBrowser(SupportedBrowser.SAFARI)
|
| @@ -13411,12 +13403,6 @@ class HtmlDocument extends Document {
|
| @Experimental()
|
| bool get hidden => _webkitHidden;
|
|
|
| - @DomName('Document.webkitIsFullScreen')
|
| - @SupportedBrowser(SupportedBrowser.CHROME)
|
| - @SupportedBrowser(SupportedBrowser.SAFARI)
|
| - @Experimental()
|
| - bool get isFullScreen => _webkitIsFullScreen;
|
| -
|
| @DomName('Document.webkitPointerLockElement')
|
| @SupportedBrowser(SupportedBrowser.CHROME)
|
| @SupportedBrowser(SupportedBrowser.SAFARI)
|
| @@ -34347,11 +34333,6 @@ class _WrappedEvent implements Event {
|
|
|
| bool get bubbles => wrapped.bubbles;
|
|
|
| - bool get cancelBubble => wrapped.bubbles;
|
| - void set cancelBubble(bool value) {
|
| - wrapped.cancelBubble = value;
|
| - }
|
| -
|
| bool get cancelable => wrapped.cancelable;
|
|
|
| DataTransfer get clipboardData => wrapped.clipboardData;
|
|
|