18 lines
397 B
HTML
18 lines
397 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Quote scope Shadow DOM and SLOT</title>
|
|
<link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
|
|
<link rel="help" href="https://www.w3.org/TR/css-content-3/#quote-values">
|
|
<style>
|
|
q {
|
|
quotes: '1''1''2''2''3''3';
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<q>
|
|
<q>Quote</q>
|
|
</q>
|
|
</body>
|
|
</html>
|