mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
13 lines
672 B
JavaScript
13 lines
672 B
JavaScript
document.write(document.location.href.charCodeAt(0));
|
|
|
|
document.write(document.location); // $ Alert
|
|
document.write(document.location.href); // $ Alert
|
|
document.write(document.location.href.valueOf()); // $ Alert
|
|
document.write(document.location.href.sup()); // $ Alert
|
|
document.write(document.location.href.toUpperCase()); // $ Alert
|
|
document.write(document.location.href.trimLeft()); // $ Alert
|
|
document.write(String.fromCharCode(document.location.href)); // $ Alert
|
|
document.write(String(document.location.href)); // $ Alert
|
|
document.write(escape(document.location.href)); // OK - for now
|
|
document.write(escape(escape(escape(document.location.href)))); // OK - for now
|