| 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 008c374b97438bc3252fafe416d7e5c8c39d375f..34c3446578fb817afe430ba8a55efab6cf3a24db 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -28998,7 +28998,7 @@ class MouseEvent extends UIEvent {
|
|
|
| @DomName('MouseEvent.dataTransfer')
|
| DataTransfer get dataTransfer =>
|
| - js.JsNative.getProperty(js.context, 'dataTransfer');
|
| + js.JsNative.getProperty(this, 'dataTransfer');
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -41281,11 +41281,11 @@ class Url extends DartHtmlDomObject implements UrlUtils {
|
| return _blink.BlinkURL.instance
|
| .createObjectURL_Callback_1_(blob_OR_source_OR_stream);
|
| }
|
| - if ((blob_OR_source_OR_stream is MediaStream)) {
|
| + if ((blob_OR_source_OR_stream is MediaSource)) {
|
| return _blink.BlinkURL.instance
|
| .createObjectURL_Callback_1_(blob_OR_source_OR_stream);
|
| }
|
| - if ((blob_OR_source_OR_stream is MediaSource)) {
|
| + if ((blob_OR_source_OR_stream is MediaStream)) {
|
| return _blink.BlinkURL.instance
|
| .createObjectURL_Callback_1_(blob_OR_source_OR_stream);
|
| }
|
|
|