mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
5 lines
186 B
JavaScript
5 lines
186 B
JavaScript
document.write("<script>alert_assert('Pass 1 of 2');</script>");
|
|
|
|
var s = document.createElement('script');
|
|
s.textContent = "alert_assert('Pass 2 of 2');";
|
|
document.body.appendChild(s);
|