https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b02b86b8f65b9c71b213c091c4deda3cb486981b authored by Geoffrey Sneddon on 21 March 2018, 16:54:08 UTC
Fix #2669: Add alternate_hosts
Tip revision: b02b86b
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