Skip to content

Fixes firefox copy paste issue #142354

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

Merged
merged 1 commit into from
Jun 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion src/librustdoc/html/static/js/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Local js definitions:
/* global addClass, getSettingValue, hasClass, updateLocalStorage */
/* global onEachLazy, removeClass, getVar */
/* global onEachLazy, removeClass, getVar, nonnull */

"use strict";

Expand Down Expand Up @@ -2138,3 +2138,31 @@ function preLoadCss(cssUrl) {
elem.addEventListener("click", showHideCodeExampleButtons);
});
}());

// This section is a bugfix for firefox: when copying text with `user-select: none`, it adds
// extra backline characters.
//
// Rustdoc issue: Workaround for https://github.com/rust-lang/rust/issues/141464
// Firefox issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1273836
(function() {
document.body.addEventListener("copy", event => {
let target = nonnull(event.target);
let isInsideCode = false;
while (target && target !== document.body) {
// @ts-expect-error
if (target.tagName === "CODE") {
isInsideCode = true;
break;
}
// @ts-expect-error
target = target.parentElement;
}
if (!isInsideCode) {
return;
}
const selection = document.getSelection();
// @ts-expect-error
nonnull(event.clipboardData).setData("text/plain", selection.toString());
event.preventDefault();
});
}());
Loading