blob: 19dd6939ac197efc5cd38d133a8cdc66e321ad04 (
plain)
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
|
var tests = [];
function iframeRef(frameRef) {
return frameRef.contentWindow
? frameRef.contentWindow.document
: frameRef.contentDocument;
}
function showNodes(decoder) {
var iframe = iframeRef(document.getElementById("scrwin"));
nodes = iframe.querySelectorAll("span");
for (var i = 0; i < nodes.length; i++) {
var test = subsetTest(async_test,
"U+" +
nodes[i].dataset.cp +
" " +
String.fromCodePoint(parseInt(nodes[i].dataset.cp, 16)) +
" " +
decoder(nodes[i].dataset.bytes) +
" " +
nodes[i].dataset.bytes
);
if (test) {
tests[i] = test;
}
}
for (var i = 0; i < nodes.length; i++) {
if (tests[i]) {
tests[i].step(function() {
assert_equals(
nodes[i].textContent,
decoder(nodes[i].dataset.bytes)
);
});
tests[i].done();
}
}
}
|