aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_thread.rs
diff options
context:
space:
mode:
authorGae24 <96017547+Gae24@users.noreply.github.com>2025-01-15 20:45:29 +0100
committerGitHub <noreply@github.com>2025-01-15 19:45:29 +0000
commitd470f219b1cb80f50bb9050a7649627397f7a5d9 (patch)
treeab726a47db048f1a14edab25d686f2c2b10e52d5 /components/script/script_thread.rs
parentcd9e831e91e7587a71c5fa401b3721b5cfad8f43 (diff)
downloadservo-d470f219b1cb80f50bb9050a7649627397f7a5d9.tar.gz
servo-d470f219b1cb80f50bb9050a7649627397f7a5d9.zip
Implement Clipboard Event Api (#33576)
* implement ClipboardEvent interface Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * draft implementation of clipboard events Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * handle received clipboard events inside html elemtents Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * use rustdoc style Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * fix compilation errors due to rebase Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * update arboard crate Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * improve paste events Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * code cleanup revert arboard crate's update, handle text only Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * restrict visibility of some methods to script crate Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * propagate CanGc argument Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * simplify handle_clipboard_msg Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * remove code duplication Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * fix potential borrow hazard Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * add clipboard_event pref, restore unit test code Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * retrict visibility of some document's methods Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * check if clipboardevent is trusted Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * enable clipboardevent Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> * fix compilation for egl ports Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com> --------- Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com>
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r--components/script/script_thread.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs
index 0cf14937c4c..08ce5fa7540 100644
--- a/components/script/script_thread.rs
+++ b/components/script/script_thread.rs
@@ -1141,6 +1141,10 @@ impl ScriptThread {
CompositorEvent::GamepadEvent(gamepad_event) => {
window.as_global_scope().handle_gamepad_event(gamepad_event);
},
+
+ CompositorEvent::ClipboardEvent(clipboard_action) => {
+ document.handle_clipboard_action(clipboard_action, can_gc);
+ },
}
}
ScriptThread::set_user_interacting(false);