fix(benchpress): benchpress fixes and a smoke test for Dart
This commit is contained in:
16
modules/examples/src/benchpress/index.html
Normal file
16
modules/examples/src/benchpress/index.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Benchpress test</title>
|
||||
</head>
|
||||
<body>
|
||||
<button onclick="pleaseLog()">Click me</button>
|
||||
<div id="log"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
function pleaseLog() {
|
||||
document.getElementById("log").innerHTML = "hi";
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user