https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 67fd0f044a51ea8bf3c0946e040536a243009d05 authored by Mike Pennisi on 30 November 2018, 00:53:13 UTC
Trigger duplicate collection
Tip revision: 67fd0f0
webkit-text-fill-color-property-006-ref.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>webkit-text-fill-color on text-overflow ellipsis reference</title>
<link rel="author" title="Jeremy Chen" href="jeremychen@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style>
div {
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px;
  color: green;
}
span {
  font-family: Ahem;
  font-size: 30px;
}
</style>
<body>
<p>Test passes if there is a <strong>green ellipsis</strong> after "TestChecks".</p>
<div>
  <span>TestChecksThatTextColorAndEllipsisColorShouldBeTheSame</span>
</div>
</body>
back to top