Newer
Older
minerva / Tests / LibWeb / Ref / css-quotes.html
@minerva minerva on 13 Jul 363 bytes Initial commit
<!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>