mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
14 lines
467 B
HTML
14 lines
467 B
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>
|