flutter_flutter/tests/modules/instance-of-application.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
220 B
Plaintext

<html>
<import src="../resources/dump-as-text.sky" />
<div id="result">FAIL</div>
<script>
document.getElementById("result").textContent =
module instanceof Application ? 'PASS': 'FAIL: ' + module;
</script>
</html>