5 <script src=
"../resources/js-test.js"></script>
10 description("Test that window.crypto.subtle wrapper preserves custom properties.");
15 window
.crypto
.subtle
.foo
= "bar";
17 setTimeout(continueTest
, 10);
20 function continueTest()
23 setTimeout(finishTest
, 10);
29 shouldBe('window.crypto.subtle.foo', '"bar"');
33 window
.onload
= startTest
;