mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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
9 lines
220 B
Plaintext
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>
|