Selection interface working for synthetic operations

This commit is contained in:
Patrick Shaughnessy 2020-01-31 21:56:36 -05:00
parent e697e6cca7
commit 5ef3358951
30 changed files with 812 additions and 8468 deletions

View file

@ -175,6 +175,12 @@ partial interface Window {
readonly attribute unsigned long runningAnimationCount;
};
// https://w3c.github.io/selection-api/#dom-document
partial interface Window {
Selection? getSelection();
};
dictionary WindowPostMessageOptions : PostMessageOptions {
USVString targetOrigin = "/";
};