mirror of
https://github.com/github/codeql.git
synced 2026-02-09 11:41:06 +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
|
|
}
|
|
}
|