mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-27 12:30:52 +00:00
15 lines
361 B
JavaScript
15 lines
361 B
JavaScript
let testframe = document.getElementById("testframe");
|
|
testframe.onload = function() {
|
|
parent.postMessage({
|
|
result: "frame-allowed",
|
|
href: document.location.href,
|
|
}, "*");
|
|
}
|
|
testframe.onerror = function() {
|
|
parent.postMessage({
|
|
result: "frame-blocked",
|
|
href: document.location.href,
|
|
}, "*");
|
|
}
|
|
testframe.src = "file_frame_src_inner.html"
|