diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /devtools/client/shared/test/unit/test_escapeCSSComment.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/shared/test/unit/test_escapeCSSComment.js')
-rw-r--r-- | devtools/client/shared/test/unit/test_escapeCSSComment.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/devtools/client/shared/test/unit/test_escapeCSSComment.js b/devtools/client/shared/test/unit/test_escapeCSSComment.js new file mode 100644 index 000000000..19d8a2902 --- /dev/null +++ b/devtools/client/shared/test/unit/test_escapeCSSComment.js @@ -0,0 +1,40 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +var Cu = Components.utils; +const {require} = Cu.import("resource://devtools/shared/Loader.jsm", {}); +const {escapeCSSComment, _unescapeCSSComment} = require("devtools/shared/css/parsing-utils"); + +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 (let test of TEST_DATA) { + ++i; + do_print("Test #" + i); + + let escaped = escapeCSSComment(test.input); + equal(escaped, test.expected); + let unescaped = _unescapeCSSComment(escaped); + equal(unescaped, test.input); + } +} |