LibWeb: Implement navigator.clipboard.write

This commit is contained in:
Timothy Flynn 2025-05-01 11:48:45 -04:00 committed by Tim Flynn
commit a4e9a27343
Notes: github-actions[bot] 2025-05-02 21:47:22 +00:00
4 changed files with 150 additions and 3 deletions

View file

@ -25,6 +25,7 @@ public:
GC::Ref<WebIDL::Promise> read_text();
GC::Ref<WebIDL::Promise> write(GC::RootVector<GC::Root<ClipboardItem>>&);
GC::Ref<WebIDL::Promise> write_text(String);
private: