This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var isAudioContextSupported = function () { | |
// This feature is still prefixed in Safari | |
window.AudioContext = window.AudioContext || window.webkitAudioContext; | |
if(window.AudioContext){ | |
return true; | |
} | |
else { | |
return false; | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface AesGcmEncryptResult { | |
readonly attribute ArrayBuffer ciphertext; | |
readonly attribute ArrayBuffer tag; | |
}; | |
interface BookmarkCollection { | |
readonly attribute long length; | |
any item(unsigned long index); |