repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git]
/
js
/
xpconnect
/
tests
/
unit
/
test_css.js
blob
e6635d5293f9184b26da9b01a96711abc0a5e419
1
function run_test() {
2
var sb = new Cu.Sandbox('http://www.example.com',
3
{ wantGlobalProperties: ["CSS"] });
4
sb.equal = equal;
5
Cu.evalInSandbox('equal(CSS.escape("$"), "\\\\$");',
6
sb);
7
Cu.importGlobalProperties(["CSS"]);
8
Assert.equal(CSS.escape("$"), "\\$");
9
}