mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
12
dom/base/test/test_settimeout_extra_arguments.html
Normal file
12
dom/base/test/test_settimeout_extra_arguments.html
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset=utf-8>
|
||||
<title>Test for setTimeout with a string argument and more than 2 arguments</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
t1 = async_test("setTimeout with more than 2 arguments, first argument a string, should work");
|
||||
t2 = async_test("setInterval with more than 2 arguments, first argument a string, should work");
|
||||
setTimeout("t1.done()", 0, {});
|
||||
var interval = setInterval("clearInterval(interval); t2.done()", 0, {});
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue