forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivateMocks.js
62 lines (54 loc) · 1.19 KB
/
privateMocks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
'use strict';
function they(msg, vals, spec, specialState) {
var keyIsValue = isArray(vals);
forEach(vals, function(val, key) {
if (keyIsValue) {
key = val;
}
var m = msg.replace('$prop', key);
var method;
switch(specialState) {
case 'focus':
method = iit;
break;
case 'skip':
method = xit;
break;
default:
method = it;
}
method(m, function() {
spec(val);
});
});
}
function tthey(msg, vals, spec) {
they(msg, vals, spec, 'focus');
}
function xthey(msg, vals, spec) {
they(msg, vals, spec, 'skip');
}
function createMockStyleSheet(doc, wind) {
doc = doc ? doc[0] : document;
wind = wind || window;
var node = doc.createElement('style');
var head = doc.getElementsByTagName('head')[0];
head.appendChild(node);
var ss = doc.styleSheets[doc.styleSheets.length - 1];
return {
addRule: function(selector, styles) {
try {
ss.insertRule(selector + '{ ' + styles + '}', 0);
}
catch (e) {
try {
ss.addRule(selector, styles);
}
catch (e2) {}
}
},
destroy: function() {
head.removeChild(node);
}
};
}