Update web-platform-tests to revision e4c65276b686cd788b2c4f8c395025df371e84a1

This commit is contained in:
WPT Sync Bot 2019-10-12 10:24:51 +00:00
parent a84d4ab755
commit 6edbabc2c6
68 changed files with 661 additions and 354 deletions

View file

@ -43,7 +43,7 @@ dictionary CookieStoreGetOptions {
enum CookieSameSite {
"strict",
"lax",
"unrestricted"
"none"
};
dictionary CookieStoreSetOptions {

View file

@ -53,8 +53,8 @@ partial interface Window {
interface MediaQueryList : EventTarget {
readonly attribute CSSOMString media;
readonly attribute boolean matches;
void addListener(EventListener? listener);
void removeListener(EventListener? listener);
void addListener(EventListener? callback);
void removeListener(EventListener? callback);
attribute EventHandler onchange;
};