Files
codeql/javascript/ql/test/library-tests/Nodes/tst.js
eliav 30cc91421d javascript: Add support for document.defaultView in global variable references
Updated the data flow analysis to include `document.defaultView` as a source node for global variable references. Added a new test file `tst4.js` and updated existing tests to verify the inclusion of `defaultView` and its properties in the expected results.
2025-11-17 00:52:06 +02:00

8 lines
121 B
JavaScript

window;
this;
window.document;
window.window.document;
self.document;
globalThis.document;
document.defaultView.history;