mirror of
https://github.com/facebook/react.git
synced 2026-02-25 22:45:00 +00:00
23 lines
456 B
HTML
23 lines
456 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="jasmine.css" />
|
|
<style type="text/css">
|
|
iframe {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
left: -1000px;
|
|
top: -1000px;
|
|
}
|
|
</style>
|
|
<script src="jasmine.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
require("jasmine").getEnv().execute();
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|