mirror of
https://github.com/github/codeql.git
synced 2026-04-10 17:44:03 +02: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
|
|
}
|
|
}
|