Adam Barth 03114dfa7e Switch "html" Mojo modules to the Sky module system
These never really worked with HTML imports. This CL updates them to use a more
modern version of the Sky module system so we can delete the old this.exports
pattern.

R=esprehn@chromium.org

Review URL: https://codereview.chromium.org/697723003
2014-10-31 14:46:40 -07:00

10 lines
301 B
Plaintext

<html>
<link rel="import" href="../resources/dump-as-text.sky" />
<link rel="import" href="/mojo/public/sky/buffer.sky" as="buffer" />
<div id="result">FAIL</div>
<script>
document.getElementById("result").textContent =
buffer.Buffer ? "PASS" : "FAIL: buffer.Buffer is missing";
</script>
</html>