Bug 1982586 Comment 4 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

I see you've got a patch up, but if you need other ideas -- as a short-term hackaround, you can suppress the new box and restore the old behavior by adding this CSS for the content in question:
```css
::details-content {
    display: contents;
}
```

(as an example, I did this in https://hg-edge.mozilla.org/mozilla-central/rev/fa6903bc79db for an a11y test that needs a bit more investigation from a11y folks.)
I see you've got a patch up, but if you need other ideas -- as a somewhat-inelegant hackaround, you can suppress the new box and restore the old behavior by adding this CSS for the content in question:
```css
::details-content {
    display: contents;
}
```

(as an example, I did this in https://hg-edge.mozilla.org/mozilla-central/rev/fa6903bc79db for an a11y test that needs a bit more investigation from a11y folks.)

Back to Bug 1982586 Comment 4