mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
7185723413
--HG-- extra : transplant_source : %9D%B8%82%B3%B1%99%C6%CE%1C%E1%DDs%D1%40%EA%E3%DD%D2%01%A4
16 lines
369 B
HTML
16 lines
369 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<script>
|
|
function createContext() {
|
|
var context = new window.AudioContext();
|
|
var source = context.createOscillator();
|
|
source.onended = function(e) {
|
|
document.documentElement.removeAttribute("class");
|
|
};
|
|
source.connect(context.destination);
|
|
source.start(0.49);
|
|
source.stop(0.5);
|
|
}
|
|
createContext();
|
|
</script>
|