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

Side by Side Diff: LayoutTests/crypto/gc-3.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-2-expected.txt ('k') | LayoutTests/crypto/gc-3-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 wrapper protects all dependencies, so it ca n always be used to create crypto.subtle.");
12 jsTestIsAsync = true;
13
14 var anotherWindowCrypto;
15
16 function startTest()
17 {
18 anotherWindowCrypto = frames[0].crypto;
19 shouldBeDefined(anotherWindowCrypto);
20 document.body.removeChild(document.getElementsByTagName("iframe")[0]);
21 gc();
22 setTimeout(continueTest, 10);
23 }
24
25 function continueTest()
26 {
27 gc();
28 setTimeout(finishTest, 10);
29 }
30
31 function finishTest()
32 {
33 gc();
34 shouldBeDefined(anotherWindowCrypto.subtle);
35 finishJSTest();
36 }
37
38 window.onload = startTest;
39
40 </script>
41 <iframe src="about:blank"></iframe>
42 </body>
43 </html>
OLDNEW
« no previous file with comments | « LayoutTests/crypto/gc-2-expected.txt ('k') | LayoutTests/crypto/gc-3-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698