https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 410fe8465f4c5a51d25d95c62a53b569d980c1cf authored by Robert Ma on 19 March 2018, 15:34:37 UTC
Exit check_stability with an error when no tests run
Tip revision: 410fe84
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