Chromium Code Reviews| Index: CHANGELOG.md |
| diff --git a/CHANGELOG.md b/CHANGELOG.md |
| index f8d9aadded24121ab48dd066cbc7146c4c82cf8c..6d42f2242cb8d40442f95cb8a802507fca6c7f77 100644 |
| --- a/CHANGELOG.md |
| +++ b/CHANGELOG.md |
| @@ -14,6 +14,27 @@ |
| * Introduce `ChunkedConverter` and deprecate chunked methods on `Converter`. |
| +* `dart:html` |
| + |
| + There have been a number of **BREAKING** changes to align APIs with recent changes Chrome. |
|
Alan Knight
2016/04/25 17:09:09
"in Chrome"
Also line length
kevmoo
2016/04/25 21:31:10
Done.
|
| + These including: |
|
Alan Knight
2016/04/25 17:09:09
include:
kevmoo
2016/04/25 21:31:10
Done.
|
| + |
| + * The `clipboardData` property has been removed from `KeyEvent` |
| + and `Event`. It has been moved to the new `ClipboardEvent` class, which is |
| + now used by `copy`, `cut`, and `paste` events. |
| + |
| + * The `layer` property has been removed from `KeyEvent` and |
| + `UIEvent`. It has been moved to `MouseEvent`. |
| + |
| + * The `Point get page` property has been removed from `UIEvent`. |
| + It still exists on `MouseEvent` and `Touch`. |
| + |
| + There have also been a number of other additions and removals to `dart:html`, |
| + `dart:indexed_db`, `dart:svg`, `dart:web_audio`, and `dart:web_gl` that |
| + correspond to changes to Chrome APIs between v39 and v45. Many of the breaking |
| + changes represent APIs that would have caused runtime exceptions when compiled |
| + to Javascript and run on recent Chrome releases. |
| + |
|
terry
2016/04/25 17:56:11
You'll want to add these too:
1. Chrome's ShadowR
kevmoo
2016/04/25 21:31:10
Done.
|
| * `dart:io` |
| * Added `SecurityContext.alpnSupported`, which is true if a platform |
| supports ALPN, and false otherwise. |