Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(790)

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 1583673002: Revert "Mark supportsPointConversions deprecated and always true rather than testing DOMPoint" (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tests/html/css_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f91d05dafe6f78eb47caf5019f53fdb79735dec5..6b85ade3654a6a68b70fa501e187cdd9bb6ef48d 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -39008,9 +39008,11 @@ class Window extends EventTarget implements WindowEventHandlers, WindowBase, Glo
return _requestFileSystem(persistent? 1 : 0, size);
}
- /// Obsolete API for testing if Geometry APIs supported.
- @Deprecated("Obsolete")
- static bool get supportsPointConversions => true;
+ /**
+ * convertPointFromNodeToPage and convertPointFromPageToNode are removed.
+ * see http://dev.w3.org/csswg/cssom-view/#geometry
+ */
+ static bool get supportsPointConversions => DomPoint.supported;
// To suppress missing implicit constructor warnings.
factory Window._() { throw new UnsupportedError("Not supported"); }
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tests/html/css_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698