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

Unified Diff: LayoutTests/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 | « LayoutTests/crypto/crypto-gc-expected.txt ('k') | LayoutTests/crypto/gc-2.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/gc.html
diff --git a/LayoutTests/crypto/gc.html b/LayoutTests/crypto/gc.html
new file mode 100644
index 0000000000000000000000000000000000000000..9cc228ab5e601c01862efd88f7f102646e46e1c2
--- /dev/null
+++ b/LayoutTests/crypto/gc.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<script src="../resources/js-test.js"></script>
+</head>
+<body>
+<script>
+
+description("Test that window.crypto.subtle wrapper preserves custom properties.");
+jsTestIsAsync = true;
+
+function startTest()
+{
+ window.crypto.subtle.foo = "bar";
+ gc();
+ setTimeout(continueTest, 10);
+}
+
+function continueTest()
+{
+ gc();
+ setTimeout(finishTest, 10);
+}
+
+function finishTest()
+{
+ gc();
+ shouldBe('window.crypto.subtle.foo', '"bar"');
+ finishJSTest();
+}
+
+window.onload = startTest;
+
+</script>
+</body>
+</html>
« no previous file with comments | « LayoutTests/crypto/crypto-gc-expected.txt ('k') | LayoutTests/crypto/gc-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698