Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] clipboard: Fix clipboard cross-browser coverage #5063

Open
wants to merge 1 commit into
base: 18.0
Choose a base branch
from

Commits on Oct 14, 2024

  1. [FIX] clipboard: Fix clipboard cross-browser coverage

    The current implementation of the cross-browser clipboard relies heavily
    on an API that is currently only available on Chromium based browsers
    (see [table](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API#api.clipboarditem)).
    
    There is currently no definitive announce that the feature will be
    adopted by other browsers (namely FF and Safari) and since the feature
    is still marked as experimental, it'd be better to rely ona more generic
    approach.
    
    This revision changes the flow to rely entirely on the `text/html`
    mimetype as it is supported by all modern browsers.
    
    Task: 4241877
    rrahir committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    da28d45 View commit details
    Browse the repository at this point in the history