File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,17 @@ const HUD = {
183
183
} ) ;
184
184
} ,
185
185
186
+ // Clipboard actions are only available in secure contexts.
187
+ // In Chromium based browsers this can be allowed via Permissions API's
188
+ // clipboard-read and clipboard-write permissions.
189
+ // Give a little warning when copying fails on HTTP only site. See #4572
190
+ clipboardUnavailableError ( ) {
191
+ DomUtils . documentComplete ( async ( ) => {
192
+ await this . init ( ) ;
193
+ this . show ( "Clipboard actions are unavailable on HTTP-only sites in your browser." , 2000 )
194
+ } ) ;
195
+ } ,
196
+
186
197
pasteResponse ( { data } ) {
187
198
// Hide the HUD frame again.
188
199
this . hudUI . toggleIframeElementClasses ( "vimiumUIComponentVisible" , "vimiumUIComponentHidden" ) ;
Original file line number Diff line number Diff line change @@ -160,8 +160,20 @@ const handlers = {
160
160
countElement . textContent = showMatchText ? countText : "" ;
161
161
} ,
162
162
163
+ // Navigator.clipboard is only available in secure contexts.
164
+ // Give a little warning when copying fails on HTTP only site. See #4572
165
+ isClipboardAvailable ( ) {
166
+ if ( ! navigator . clipboard ) {
167
+ UIComponentServer . postMessage ( { name : "clipboardUnavailableError" } ) ;
168
+ return false ;
169
+ }
170
+ return true ;
171
+ } ,
172
+
163
173
copyToClipboard ( message ) {
164
174
Utils . setTimeout ( TIME_TO_WAIT_FOR_IPC_MESSAGES , async function ( ) {
175
+ if ( ! handlers . isClipboardAvailable ( ) ) return ;
176
+
165
177
const focusedElement = document . activeElement ;
166
178
// In Chrome, if we do not focus the current window before invoking navigator.clipboard APIs,
167
179
// the error "DOMException: Document is not focused." is thrown.
@@ -179,6 +191,8 @@ const handlers = {
179
191
180
192
pasteFromClipboard ( ) {
181
193
Utils . setTimeout ( TIME_TO_WAIT_FOR_IPC_MESSAGES , async function ( ) {
194
+ if ( ! handlers . isClipboardAvailable ( ) ) return ;
195
+
182
196
const focusedElement = document . activeElement ;
183
197
// In Chrome, if we do not focus the current window before invoking navigator.clipboard APIs,
184
198
// the error "DOMException: Document is not focused." is thrown.
You can’t perform that action at this time.
0 commit comments