Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-ui/text-overflow-change-color.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test ellipsis style</title>
<link rel="match" href="reference/text-overflow-change-color-ref.html">
<link rel="author" href="kojii@chromium.org">
<meta name="assert" content="Changing the color of the container should also change the color of ellipsis">
<style>
div {
color: red;
text-overflow: ellipsis;
overflow: hidden;
white-space: pre;
font-size: 50px;
width: 5ch;
}
</style>
<body>
<div id=container>123456789</div>
<script>
document.body.offsetTop;
container.style.color = 'lime';
</script>
</body>