Source code

Revision control

Copy as Markdown

Other Tools

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// Source: EyeDropper API (https://wicg.github.io/eyedropper-api/)
dictionary ColorSelectionResult {
DOMString sRGBHex;
};
dictionary ColorSelectionOptions {
AbortSignal signal;
};
[Exposed=Window, SecureContext]
interface EyeDropper {
constructor();
Promise<ColorSelectionResult> open(optional ColorSelectionOptions options = {});
};