blob: 97726c3f51dd3195debd90de312cce41a3b5093a (
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
41
42
43
44
45
46
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="../resources/js-test.js"></script>
<script src="../resources/gc.js"></script>
</head>
<body>
<script>
description("Test that window.crypto.subtle wrapper preserves custom properties.");
jsTestIsAsync = true;
var anotherWindowCrypto;
function startTest()
{
anotherWindowCrypto = frames[0].crypto;
shouldBeDefined(anotherWindowCrypto);
shouldBeDefined(anotherWindowCrypto.subtle);
anotherWindowCrypto.subtle.foo = "bar";
document.body.removeChild(document.getElementsByTagName("iframe")[0]);
gc();
setTimeout(continueTest, 10);
}
function continueTest()
{
gc();
setTimeout(finishTest, 10);
}
function finishTest()
{
gc();
shouldBe('anotherWindowCrypto.subtle.foo', '"bar"');
finishJSTest();
}
window.onload = startTest;
</script>
<iframe src="about:blank"></iframe>
</body>
</html>
|