���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/fixtures/wpt/html/webappapis/timers/ |
<!doctype html> <title>Interaction of setTimeout and WebIDL</title> <link rel="author" title="Ian Hickson" href="mailto:[email protected]"> <link rel="author" title="Ms2ger" href="mailto:[email protected]"> <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-windowtimers-settimeout"> <link rel="help" href="https://heycam.github.io/webidl/#es-operations"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <div id="log"></div> <script> var t = async_test() function finishTest() { assert_equals(log, "ONE TWO ") t.done() } var log = ''; function logger(s) { log += s + ' '; } setTimeout({ toString: function () { setTimeout("logger('ONE')", 100); return "logger('TWO'); t.step(finishTest)"; } }, 100); </script>