Re: [csswg-drafts] [css-overflow-4] Clarify mandatory behavior for text-overflow with scrolling (#11291)

This issue can be easily reproduced using [Example 6](https://drafts.csswg.org/css-overflow/#ellipsis-scrolling) from the spec.

```html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <style>
      div.crawlbar {
        text-overflow: ellipsis;
        height: 2em;
        overflow: scroll;
        white-space: nowrap;
        width: 15em;
        border: 1em solid black;
      }
    </style>
  </head>
  <body>
    <div class="crawlbar">
      CSS is awesome, especially when you can scroll to see extra text instead of just having it overlap other text by
      default.
    </div>
  </body>
</html>
```

Firefox:

![firefox](https://github.com/user-attachments/assets/897c5a7c-11f7-4eec-9f86-ee4290620a4e)


Chrome:


![chrome](https://github.com/user-attachments/assets/9e0c2f21-7f3b-4594-a131-acf316f9ca83)




-- 
GitHub Notification of comment by gitspeaks
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11291#issuecomment-2506264726 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Thursday, 28 November 2024 14:35:18 UTC