mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
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.
8 lines
121 B
JavaScript
8 lines
121 B
JavaScript
window;
|
|
this;
|
|
window.document;
|
|
window.window.document;
|
|
self.document;
|
|
globalThis.document;
|
|
document.defaultView.history;
|