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