-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Chromium bugs we're tracking
philc edited this page Sep 13, 2010
·
32 revisions
Add the ability to manipulate the clipboard from content scripts or background pages
(this is required so we can implement “yy”, to yank the current page’s URL to the clipboard)
28941
Content scripts on view-source: pages
30516
Javascript: initKeyboardEvent has no effect
It may be possible to trigger the native find dialog programmatically by using something like
event=document.createEvent(“KeyboardEvent”);
event.initKeyboardEvent(“keydown”, true, true, null, “U+0046”, 0, “accel”); // 046 is F; accel = meta
document.body.dispatchEvent(event);
However, I can’t run this experiment because event.metaKey is always false, I believe because of this bug:
27048