prettier/tests/css_character_escaping/__snapshots__/jsfmt.spec.js.snap

150 lines
2.6 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`character_escaping.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
#♥ {}
#© {}
#“‘’” {}
#☺☃ {}
#⌘⌥ {}
#𝄞♪♩♫♬ {}
#💩 {}
#\\? {}
#\\@ {}
#\\. {}
#\\3A \\) {}
#\\3A \\\`\\( {}
#\\31 23 {}
#\\31 a2b3c {}
#\\<p\\> {}
#\\<\\>\\<\\<\\<\\>\\>\\<\\> {}
#\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\[\\>\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\>\\+\\<\\<\\<\\<\\-\\]\\>\\+\\+\\.\\>\\+\\.\\+\\+\\+\\+\\+\\+\\+\\.\\.\\+\\+\\+\\.\\>\\+\\+\\.\\<\\<\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\.\\>\\.\\+\\+\\+\\.\\-\\-\\-\\-\\-\\-\\.\\-\\-\\-\\-\\-\\-\\-\\-\\.\\>\\+\\.\\>\\. {}
#\\# {}
#\\#\\# {}
#\\#\\.\\#\\.\\# {}
#\\#fake-id {} /* matches the element with id="#fake-id" */
#\\_ {}
#\\{\\} {}
#\\.fake\\-class {}
#foo\\.bar {}
#\\3A hover {}
#\\3A hover\\3A focus\\3A active {}
#\\[attr\\=value\\] {}
#f\\/o\\/o {}
#f\\\\o\\\\o {}
#f\\*o\\*o {}
#f\\!o\\!o {}
#f\\'o\\'o {}
#f\\~o\\~o {}
#f\\+o\\+o {}
#-a-b-c- {}
#a\\\\b {}
@keyframes \\@mymove {
from {top: 0px;}
to {top: 200px;}
}
.foo {
animation-name: \\@mymove;
content: "\\21D3";
}
=====================================output=====================================
#♥ {
}
#© {
}
#“‘’” {
}
#☺☃ {
}
#⌘⌥ {
}
#𝄞♪♩♫♬ {
}
#💩 {
}
#\\? {
}
#\\@ {
}
#\\. {
}
#\\3A \\) {
}
#\\3A \\\`\\( {
}
#\\31 23 {
}
#\\31 a2b3c {
}
#\\<p\\> {
}
#\\<\\>\\<\\<\\<\\>\\>\\<\\> {
}
#\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\[\\>\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\>\\+\\<\\<\\<\\<\\-\\]\\>\\+\\+\\.\\>\\+\\.\\+\\+\\+\\+\\+\\+\\+\\.\\.\\+\\+\\+\\.\\>\\+\\+\\.\\<\\<\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\.\\>\\.\\+\\+\\+\\.\\-\\-\\-\\-\\-\\-\\.\\-\\-\\-\\-\\-\\-\\-\\-\\.\\>\\+\\.\\>\\. {
}
#\\# {
}
#\\#\\# {
}
#\\#\\.\\#\\.\\# {
}
#\\#fake-id {
} /* matches the element with id="#fake-id" */
#\\_ {
}
#\\{\\} {
}
#\\.fake\\-class {
}
#foo\\.bar {
}
#\\3A hover {
}
#\\3A hover\\3a focus\\3a active {
}
#\\[attr\\=value\\] {
}
#f\\/o\\/o {
}
#f\\\\o\\\\o {
}
#f\\*o\\*o {
}
#f\\!o\\!o {
}
#f\\'o\\'o {
}
#f\\~o\\~o {
}
#f\\+o\\+o {
}
#-a-b-c- {
}
#a\\\\b {
}
@keyframes \\@mymove {
from {
top: 0px;
}
to {
top: 200px;
}
}
.foo {
animation-name: \\@mymove;
content: "\\21D3";
}
================================================================================
`;