Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
const {
escapeCSSComment,
unescapeCSSComment,
const TEST_DATA = [
{
input: "simple",
expected: "simple",
},
{
input: "/* comment */",
expected: "/\\* comment *\\/",
},
{
input: "/* two *//* comments */",
expected: "/\\* two *\\//\\* comments *\\/",
},
{
input: "/* nested /\\* comment *\\/ */",
expected: "/\\* nested /\\\\* comment *\\\\/ *\\/",
},
];
function run_test() {
let i = 0;
for (const test of TEST_DATA) {
++i;
info("Test #" + i);
const escaped = escapeCSSComment(test.input);
equal(escaped, test.expected);
const unescaped = unescapeCSSComment(escaped);
equal(unescaped, test.input);
}
}