mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
270 B
HTML
13 lines
270 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var threw;
|
|
try {
|
|
document.domain = "example.org";
|
|
threw = false;
|
|
} catch (e) {
|
|
threw = true;
|
|
}
|
|
var sandboxed = (location.search == "?sandboxed");
|
|
parent.postMessage({ threw: threw, sandboxed: sandboxed }, "*");
|
|
</script>
|