summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/processing-model-2/support/undefined-variable-in-setInterval.js
blob: c2a017a2abfbe4bac9720139f83ae0775c2e9ecc (plain)
1
2
3
4
5
6
7
8
interval = setInterval('undefined_variable;', 10);
step_timeout(function(){
    clearInterval(interval);
    t.step(function(){
        assert_true(ran, 'ran');
        t.done();
    });
}, 20);