diff options
author | Nupur Baghel <nupurbaghel@gmail.com> | 2018-02-18 23:02:48 +0530 |
---|---|---|
committer | Nupur Baghel <nupurbaghel@gmail.com> | 2018-02-22 21:34:53 +0530 |
commit | 36991b9d7963bcf72a71e3cd5c0e0823960cfe32 (patch) | |
tree | 243ee8646f82ff36ed62f9d78fe21a81c1d73e84 /tests/html/work.js | |
parent | d423e54d58d6cced950896eed1957ee2989f4eee (diff) | |
download | servo-36991b9d7963bcf72a71e3cd5c0e0823960cfe32.tar.gz servo-36991b9d7963bcf72a71e3cd5c0e0823960cfe32.zip |
added autoclose worker
Diffstat (limited to 'tests/html/work.js')
-rw-r--r-- | tests/html/work.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/html/work.js b/tests/html/work.js new file mode 100644 index 00000000000..8fef1f11654 --- /dev/null +++ b/tests/html/work.js @@ -0,0 +1,4 @@ +console.log("reached inside work.js file"); +setInterval(function() { + console.log('hi'); +}, 500); |