mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
6 lines
160 B
JavaScript
6 lines
160 B
JavaScript
function t1() {
|
|
const elm = document.getElementById("foo");
|
|
const e2 = elm.getElementsByTagName("bar")[0];
|
|
e2.innerHTML = window.name; // $ Alert
|
|
}
|