https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 42726335c0afd7f2a9408914c52072d3a85393bd authored by Andy Paicu on 16 May 2018, 10:12:30 UTC
Navigate-to current implementation level.
Tip revision: 4272633
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