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

Unified Diff: LayoutTests/crypto/encrypt-decrypt.html

Issue 104653004: [webcrypto] order Key.usages alphabetically. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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/encrypt-decrypt-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/encrypt-decrypt.html
diff --git a/LayoutTests/crypto/encrypt-decrypt.html b/LayoutTests/crypto/encrypt-decrypt.html
index 93a75dd91aee3facb9d4b4b504c2e64f60158f93..406e17931f967c80a436b15142be4cbee754f3d4 100644
--- a/LayoutTests/crypto/encrypt-decrypt.html
+++ b/LayoutTests/crypto/encrypt-decrypt.html
@@ -88,7 +88,7 @@ function runSuccessTestCase(testCase)
shouldBe("tmpKey.type", "'secret'")
shouldBe("tmpKey.extractable", "false")
shouldBe("tmpKey.algorithm.name", "'AES-CBC'")
- shouldBe("tmpKey.usages.join(',')", "'encrypt,decrypt'")
+ shouldBe("tmpKey.usages.join(',')", "'decrypt,encrypt'")
// (2) Encrypt.
return crypto.subtle.encrypt(algorithm, key, hexStringToUint8Array(testCase.plainText));
« no previous file with comments | « no previous file | LayoutTests/crypto/encrypt-decrypt-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698