<!-- Please describe your changes on the following line: --> Followed steps as suggested in issue. Error is not yet resolved! --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #17977 (https://github.com/servo/servo/issues/17977?). <!-- Either: --> - [x] These changes do not require tests because it will have manual test case. <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: 9c484452c0688205044a632b18083f85a3697693
5 lines
101 B
JavaScript
5 lines
101 B
JavaScript
console.log("reached inside work.js file");
|
|
setInterval(function() {
|
|
console.log('hi');
|
|
}, 500);
|