2023-09-12 10:22:46 -03:00
|
|
|
<!doctype html>
|
2024-11-05 09:49:08 -03:00
|
|
|
<link rel="match" href="../expected/css-quotes-ref.html" />
|
2023-09-12 10:22:46 -03:00
|
|
|
<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>
|