https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c03557a067c5fb8b1c1fcf08001cc3b1a2c8c24a authored by Darren Shen on 11 April 2018, 06:13:15 UTC
[css-typed-om] Support remaining mask properties.
Tip revision: c03557a
element-replacement.html
<!DOCTYPE html>
<title>The content CSS attribute can replace an element's contents</title>
<link rel="match" href="element-replacement-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property" />
<meta name="assert" content"This test checks that the CSS content propertly can replace a normal element's contents" />

<style>
p {
  margin: 0;
  content: url('resources/rect.svg');
}
</style>

<p>This text should not be visible</p>
back to top