mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b94c627651
--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>
|