Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Side by Side Diff: LayoutTests/crypto/gc-2.html

Issue 215763002: [webcrypto] Add layout tests for garbage collection of custom properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Modifications for Blink Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/crypto/gc.html ('k') | LayoutTests/crypto/gc-2-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="../resources/js-test.js"></script>
6 <script src="../resources/gc.js"></script>
7 </head>
8 <body>
9 <script>
10
11 description("Test that window.crypto.subtle wrapper preserves custom properties. ");
12 jsTestIsAsync = true;
13
14 var anotherWindowCrypto;
15
16 function startTest()
17 {
18 anotherWindowCrypto = frames[0].crypto;
19 shouldBeDefined(anotherWindowCrypto);
20 shouldBeDefined(anotherWindowCrypto.subtle);
21
22 anotherWindowCrypto.subtle.foo = "bar";
23 document.body.removeChild(document.getElementsByTagName("iframe")[0]);
24 gc();
25 setTimeout(continueTest, 10);
26 }
27
28 function continueTest()
29 {
30 gc();
31 setTimeout(finishTest, 10);
32 }
33
34 function finishTest()
35 {
36 gc();
37 shouldBe('anotherWindowCrypto.subtle.foo', '"bar"');
38 finishJSTest();
39 }
40
41 window.onload = startTest;
42
43 </script>
44 <iframe src="about:blank"></iframe>
45 </body>
46 </html>
OLDNEW
« no previous file with comments | « LayoutTests/crypto/gc.html ('k') | LayoutTests/crypto/gc-2-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698