| 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 431511acecd016f7d2677189d30f4af4cda02245..1d47c9399865140aa276116c7001c244ae37e820 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -14043,6 +14043,17 @@ class HttpRequest extends EventTarget {
|
| }
|
|
|
| /**
|
| + * Checks to see if the current platform supports making cross origin
|
| + * requests.
|
| + *
|
| + * Note that even if cross origin requests are supported, they still may fail
|
| + * if the destination server does not support CORS requests.
|
| + */
|
| + static bool get supportsCrossOrigin {
|
| + return true;
|
| + }
|
| +
|
| + /**
|
| * Checks to see if the LoadEnd event is supported on the current platform.
|
| */
|
| static bool get supportsLoadEndEvent {
|
|
|