pulsar/vendor/ace/test/tests.html
Chris Wanstrath 0d5d3d865f update ace
Loading is now visibly more janky, but I think
d3ba5b8111
fixes a lot of our problems.

I tested this on split-panes-2.0 and a major bug (no input
after resizing) is now gone. Poof.
2011-11-25 22:58:50 -08:00

47 lines
882 B
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ace Unit Tests</title>
<style type="text/css" media="screen">
#log .passed {
color: green;
}
#log .failed {
color: red;
}
#log pre.error {
color: black;
}
</style>
</head>
<body>
<div id="log"></div>
<script type="text/javascript">
var require = {
paths: {
ace: "../"
},
packages : [{
name: "asyncjs",
location: "./asyncjs",
main: "index"
}, {
name: "assert",
location: "./asyncjs",
main: "assert"
}]
};
</script>
<script src="../../../demo/kitchen-sink/require.js" data-main="all_browser" type="text/javascript" charset="utf-8"></script>
</body>
</html>