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

Unified Diff: LayoutTests/crypto/crypto-gc.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/crypto/crypto-gc-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/crypto-gc.html
diff --git a/LayoutTests/crypto/crypto-gc.html b/LayoutTests/crypto/crypto-gc.html
new file mode 100644
index 0000000000000000000000000000000000000000..18e14df776a901847e625f9346cb067da769bf7e
--- /dev/null
+++ b/LayoutTests/crypto/crypto-gc.html
@@ -0,0 +1,38 @@
+<!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 wrapper preserves custom properties.");
+jsTestIsAsync = true;
+
+function startTest()
+{
+ window.crypto.foo = "bar";
+ gc();
+ setTimeout(continueTest, 10);
+}
+
+function continueTest()
+{
+ gc();
+ setTimeout(finishTest, 10);
+}
+
+function finishTest()
+{
+ gc();
+ shouldBe('window.crypto.foo', '"bar"');
+ finishJSTest();
+}
+
+window.onload = startTest;
+
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/crypto/crypto-gc-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698