Spaces:
Running
Running
File size: 5,959 Bytes
4500b8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Iframe Dialog Test</title>
<style>
body {
font-family: system-ui, sans-serif;
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
background: #f5f5f5;
}
.container {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
button {
background: #2563eb;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
margin: 8px;
}
button:hover {
background: #1d4ed8;
}
.test-message {
background: #dcfce7;
border: 2px solid #16a34a;
color: #15803d;
padding: 1rem;
border-radius: 6px;
margin: 1rem 0;
font-size: 18px;
font-weight: bold;
text-align: center;
}
.iframe-container {
background: #e5e7eb;
padding: 20px;
border-radius: 8px;
margin-top: 20px;
border: 2px solid #d1d5db;
}
iframe {
width: 100%;
height: 400px;
border: 2px solid #9ca3af;
border-radius: 6px;
background: white;
}
.test-controls {
display: flex;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.log {
background: #1f2937;
color: #f9fafb;
padding: 1rem;
border-radius: 6px;
font-family: monospace;
font-size: 14px;
max-height: 400px;
overflow-y: auto;
white-space: pre-wrap;
margin-top: 1rem;
}
</style>
</head>
<body>
<div class="container">
<h1>π§ͺ Dialog Test</h1>
<div class="test-message">β
TEST PAGE LOADED SUCCESSFULLY!</div>
<div class="test-controls">
<button onclick="testDialogs()">π Test Dialogs (Standalone)</button>
<button onclick="clearLog()">ποΈ Clear Log</button>
</div>
<div class="iframe-container">
<h3>πΌοΈ Iframe Environment (Simulates HuggingFace Spaces)</h3>
<div class="test-controls">
<button onclick="loadIframe('permissive')">π Permissive</button>
<button onclick="loadIframe('restricted')">π Restricted</button>
<button onclick="loadIframe('crossorigin')">π Cross-Origin</button>
</div>
<iframe
id="testFrame"
src="about:blank"
title="Dialog Test Iframe"
></iframe>
<div
id="iframeInfo"
style="margin-top: 10px; font-size: 12px; color: #666"
>
Current iframe mode: None loaded
</div>
</div>
<div id="log" class="log">Ready to test...</div>
</div>
<script>
function log(message) {
const logElement = document.getElementById("log");
const timestamp = new Date().toLocaleTimeString();
logElement.textContent += "[" + timestamp + "] " + message + "\n";
logElement.scrollTop = logElement.scrollHeight;
}
function clearLog() {
document.getElementById("log").textContent = "Log cleared.\n";
}
function loadIframe(mode) {
const iframe = document.getElementById("testFrame");
const infoElement = document.getElementById("iframeInfo");
if (!iframe) return;
iframe.removeAttribute("sandbox");
iframe.removeAttribute("allow");
let description = "";
switch (mode) {
case "permissive":
iframe.setAttribute("allow", "serial; usb");
description = "Permissive: Full access to WebSerial and WebUSB";
iframe.src = "iframe-content.html";
break;
case "restricted":
iframe.setAttribute(
"sandbox",
"allow-scripts allow-same-origin allow-popups allow-forms"
);
iframe.setAttribute("allow", "serial; usb");
description = "Restricted: Sandboxed with limited permissions";
iframe.src = "iframe-content.html";
break;
case "crossorigin":
iframe.setAttribute(
"sandbox",
"allow-scripts allow-popups allow-forms"
);
iframe.setAttribute("allow", "serial; usb");
description =
"Cross-Origin: Different origin with sandbox restrictions";
iframe.src = "iframe-content.html";
break;
}
if (infoElement) {
infoElement.textContent = "Current iframe mode: " + description;
}
log("π Loaded iframe in " + mode + " mode: " + description);
}
async function testDialogs() {
log("π― Starting dialog test...");
try {
log("π‘ Requesting WebSerial port...");
const serialPort = await navigator.serial.requestPort();
log("β
WebSerial port selected");
log("π Requesting WebUSB device...");
const usbDevice = await navigator.usb.requestDevice({ filters: [] });
log("β
WebUSB device selected - SUCCESS!");
} catch (error) {
log("β Failed: " + error.message);
}
}
document.addEventListener("DOMContentLoaded", () => {
log("β
Page loaded successfully");
log(
"WebSerial: " +
("serial" in navigator ? "Supported" : "Not supported")
);
log("WebUSB: " + ("usb" in navigator ? "Supported" : "Not supported"));
});
window.addEventListener("message", (event) => {
if (event.data.type === "iframe-log") {
log("[IFRAME] " + event.data.message);
}
});
</script>
</body>
</html>
|