diff options
Diffstat (limited to 'components/script/dom/crypto.rs')
-rw-r--r-- | components/script/dom/crypto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/crypto.rs b/components/script/dom/crypto.rs index aedf1aa0c26..ef7bc62c9d9 100644 --- a/components/script/dom/crypto.rs +++ b/components/script/dom/crypto.rs @@ -41,8 +41,8 @@ impl Crypto { } impl<'a> CryptoMethods for &'a Crypto { - // https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#Crypto-method-getRandomValues #[allow(unsafe_code)] + // https://dvcs.w3.org/hg/webcrypto-api/raw-file/tip/spec/Overview.html#Crypto-method-getRandomValues fn GetRandomValues(self, _cx: *mut JSContext, input: *mut JSObject) -> Fallible<*mut JSObject> { let mut length = 0; |