Bug 1850482 Comment 1 Edit History

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

This seems to be the web site design. The following style is applied to the container. So, the scrollbar is hidden on webkit only.

https://support.apple.com/static_resources/css/search_page.css

```
.tabs .tab_content_text {
    word-break: break-word;
    overflow-x: scroll;
    -ms-overflow-style: none;
}

.tabs .tab_content_text::-webkit-scrollbar {
    display: none;
}
```

Back to Bug 1850482 Comment 1