| 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 2e82f344cc8accbee9580395f9e9b9183900696e..b1507583290e8b96139968bdb560ef5979359ccb 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -32119,11 +32119,9 @@ class Window extends EventTarget implements WindowEventHandlers, WindowBase, Glo
|
| return _requestFileSystem(persistent? 1 : 0, size);
|
| }
|
|
|
| - /**
|
| - * convertPointFromNodeToPage and convertPointFromPageToNode are removed.
|
| - * see http://dev.w3.org/csswg/cssom-view/#geometry
|
| - */
|
| - static bool get supportsPointConversions => DomPoint.supported;
|
| + /// Obsolete API for testing if Geometry APIs supported.
|
| + @Deprecated("Obsolete")
|
| + static bool get supportsPointConversions => true;
|
| // To suppress missing implicit constructor warnings.
|
| factory Window._() { throw new UnsupportedError("Not supported"); }
|
|
|
|
|