flutter_flutter/tests/modules/instance-of-module.sky
Adam Barth b71fee9e48 Move exports from Document to Module
This CL moves the |exports| from Document to the new |Module| interface,
matching the spec. Also, the |module| object available to scripts is now really
an instance of |Module|.

R=eseidel@chromium.org

Review URL: https://codereview.chromium.org/703593003
2014-11-10 15:34:25 -08:00

9 lines
234 B
Plaintext

<html>
<import src="../resources/dump-as-text.sky" />
<import src="resources/instance-of-module-module.sky" as="result" />
<div id="result">FAIL</div>
<script>
document.getElementById("result").textContent = result;
</script>
</html>