Skip to content

Commit 3e971a7

Browse files
committed
Fix PermissionName for clipboard
1 parent 951d1df commit 3e971a7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20068,7 +20068,7 @@ type OverSampleType = "2x" | "4x" | "none";
2006820068
type PanningModelType = "HRTF" | "equalpower";
2006920069
type PaymentComplete = "fail" | "success" | "unknown";
2007020070
type PaymentShippingType = "delivery" | "pickup" | "shipping";
20071-
type PermissionName = "accelerometer" | "ambient-light-sensor" | "background-sync" | "bluetooth" | "camera" | "clipboard" | "device-info" | "geolocation" | "gyroscope" | "magnetometer" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "speaker";
20071+
type PermissionName = "accelerometer" | "ambient-light-sensor" | "background-sync" | "bluetooth" | "camera" | "device-info" | "geolocation" | "gyroscope" | "magnetometer" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "speaker" | "clipboard-read" | "clipboard-write";
2007220072
type PermissionState = "denied" | "granted" | "prompt";
2007320073
type PlaybackDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
2007420074
type PositionAlignSetting = "auto" | "center" | "line-left" | "line-right";

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6026,7 +6026,7 @@ type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "u
60266026
type NotificationDirection = "auto" | "ltr" | "rtl";
60276027
type NotificationPermission = "default" | "denied" | "granted";
60286028
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2";
6029-
type PermissionName = "accelerometer" | "ambient-light-sensor" | "background-sync" | "bluetooth" | "camera" | "clipboard" | "device-info" | "geolocation" | "gyroscope" | "magnetometer" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "speaker";
6029+
type PermissionName = "accelerometer" | "ambient-light-sensor" | "background-sync" | "bluetooth" | "camera" | "device-info" | "geolocation" | "gyroscope" | "magnetometer" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "speaker" | "clipboard-read" | "clipboard-write";
60306030
type PermissionState = "denied" | "granted" | "prompt";
60316031
type PremultiplyAlpha = "default" | "none" | "premultiply";
60326032
type PushEncryptionKeyName = "auth" | "p256dh";

inputfiles/idl/Permissions.widl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ enum PermissionName {
4545
"accelerometer",
4646
"gyroscope",
4747
"magnetometer",
48-
"clipboard",
48+
"clipboard-read",
49+
"clipboard-write",
4950
};
5051

5152
dictionary PushPermissionDescriptor : PermissionDescriptor {

0 commit comments

Comments
 (0)