frontend icon indicating copy to clipboard operation
frontend copied to clipboard

prompt and display on Chrome: not showing output of prompt incrementally

Open martin-henz opened this issue 3 years ago • 1 comments

Bug shows up on Chrome. Firefox: OK. Here is the test case:

function prompt_loop() {
    const input = prompt("enter here:");
    if (input === null) {
        return null;
    } else {
        display(input);
        prompt_loop();
    }
}
prompt_loop();

martin-henz avatar May 13 '21 05:05 martin-henz

(use Source §3)

martin-henz avatar May 13 '21 05:05 martin-henz