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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
var perf_data = {
start: null,
end: null,
};
function build_dom(n, elemName, options) {
// By default we use different elements in the DOM to defeat the style sharing
// cache, otherwise this sythetic DOM is trivially stylable by engines with that
// optimization.
options = options || {};
var elemNameLeft = options.elemNameLeft || "div";
var elemNameRight = options.elemNameRight || "span";
var ours = document.createElement(elemName);
for (var attr in options.attributes) {
ours.setAttribute(attr, options.attributes[attr]);
}
if (n != 1) {
var leftSize = Math.floor(n / 2);
var rightSize = Math.floor((n - 1) / 2);
ours.appendChild(build_dom(leftSize, elemNameLeft, options));
if (rightSize > 0) {
ours.appendChild(build_dom(rightSize, elemNameRight, options));
}
}
return ours;
}
function build_rule(selector, selectorRepeat, declaration, ruleRepeat) {
ruleRepeat = ruleRepeat || 1;
var s = document.createElement("style");
var rule =
Array(selectorRepeat)
.fill(selector)
.join(", ") + declaration;
s.textContent = Array(ruleRepeat)
.fill(rule)
.join("\n\n");
return s;
}
function build_text(word, wordRepeat, paraRepeat) {
wordRepeat = wordRepeat || 1;
paraRepeat = paraRepeat || 1;
let para = Array(wordRepeat)
.fill(word)
.join(" ");
return Array(paraRepeat)
.fill(para)
.join("\n");
}
function flush_style(element) {
getComputedStyle(element || document.documentElement).color;
}
function flush_layout(element) {
(element || document.documentElement).offsetHeight;
}
function perf_start() {
if (perf_data.start !== null) {
throw new Error("already started timing!");
}
perf_data.start = performance.now();
}
function perf_finish() {
var end = performance.now();
if (perf_data.start === null) {
throw new Error("haven't started timing!");
}
if (perf_data.end !== null) {
throw new Error("already finished timing!");
}
var start = perf_data.start;
perf_data.end = end;
// when running in talos report results; when running outside talos just alert
if (window.tpRecordTime) {
// Running in talos.
window.tpRecordTime(end - start, start);
} else if (window.parent && window.parent.report_perf_reftest_time) {
// Running in the perf-reftest runner.
window.parent.report_perf_reftest_time({
type: "time",
value: end - start,
});
} else {
// Running standalone; just alert.
console.log(end);
console.log(start);
alert("Result: " + (end - start).toFixed(2) + " (ms)");
}
}
if (window.parent.report_perf_reftest_time) {
window.addEventListener("error", function(e) {
window.parent.report_perf_reftest_time({ type: "error", value: e.message });
});
}
|