| <html> | |
| <import src="resources/does-not-export.sky" as="hello" /> | |
| <import src="../resources/dump-as-text.sky" /> | |
| <div id="result">FAIL - Script did not execute</div> | |
| <script> | |
| var result = "FAIL"; | |
| if (typeof hello === "object" && Object.keys(hello).length === 0) | |
| result = "PASS"; | |
| document.getElementById("result").textContent = result; | |
| </script> | |
| </html> |