wpt / css / css-content / element-replacement-gradient.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-content/element-replacement-gradient.html

<!doctype html>
<meta charset="utf-8">
<title>content: gradient</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="match" href="element-replacement-gradient-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property" />
<style>
div {
  width: 100px;
  height: 100px;
  content: linear-gradient(purple, yellow);
}
</style>
<div></div>

/css/css-content/element-replacement-gradient-ref.html

<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
div {
  width: 100px;
  height: 100px;
  background-image: linear-gradient(purple, yellow);
}
</style>
<div></div>