serenity/Tests/LibWeb/Ref/css-quotes.html

20 lines
363 B
HTML
Raw Normal View History

<!doctype html>
<link rel="match" href="reference/css-quotes-ref.html" />
<style>
div::before {
content: open-quote "Well, hello friends!" close-quote;
}
.a {
quotes: none;
}
.b {
quotes: auto;
}
.c {
quotes: "/* " " */";
}
</style>
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>