public Audio() { this(AudioElement.create()); }
/** * Determine if it's possible to play back the given audio type * * @param type The media type to test * @return [ "" | "maybe" | "probably" ] */ public static String canPlayType(String type) { return AudioElement.create().canPlayType(type); }