mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
import * as dummy from 'dummy';
|
|
|
|
class CustomElm extends HTMLElement {
|
|
test() {
|
|
this.innerHTML = window.name; // NOT OK
|
|
}
|
|
}
|