| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 634a88e792000578c7d418755a62c671a8ea9b79..f72e8f79ee0d19089ef4eb5cacdd94fb50c4e679 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -12914,14 +12914,6 @@ class HtmlDocument extends Document native "HTMLDocument" {
|
| _title = value;
|
| }
|
|
|
| - @DomName('Document.webkitCancelFullScreen')
|
| - @SupportedBrowser(SupportedBrowser.CHROME)
|
| - @SupportedBrowser(SupportedBrowser.SAFARI)
|
| - @Experimental()
|
| - void cancelFullScreen() {
|
| - _webkitCancelFullScreen();
|
| - }
|
| -
|
| @DomName('Document.webkitExitFullscreen')
|
| @SupportedBrowser(SupportedBrowser.CHROME)
|
| @SupportedBrowser(SupportedBrowser.SAFARI)
|
| @@ -12956,12 +12948,6 @@ class HtmlDocument extends Document native "HTMLDocument" {
|
| @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)
|
| @@ -32132,11 +32118,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;
|
|
|