mirror of
https://github.com/google/blockly.git
synced 2026-01-19 06:47:12 +01:00
70 lines
1.7 KiB
HTML
70 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
@license
|
|
Blockly Tests
|
|
|
|
Copyright 2019 Google Inc.
|
|
https://developers.google.com/blockly/
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Blockly Playground: Old rendering</title>
|
|
<script src="https://blockly-demo.appspot.com/static/blockly_compressed.js"></script>
|
|
<script src="../../msg/messages.js"></script>
|
|
<script src="../../blocks/logic.js"></script>
|
|
<script src="../../blocks/loops.js"></script>
|
|
<script src="../../blocks/math.js"></script>
|
|
<script src="../../blocks/text.js"></script>
|
|
<script src="../../blocks/lists.js"></script>
|
|
<script src="../../blocks/colour.js"></script>
|
|
<script src="../../blocks/variables.js"></script>
|
|
<script src="../../blocks/variables_dynamic.js"></script>
|
|
<script src="../../blocks/procedures.js"></script>
|
|
<script src="../blocks/test_blocks.js"></script>
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
background-color: #fff;
|
|
font-family: sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
h1 {
|
|
font-weight: normal;
|
|
font-size: 140%;
|
|
}
|
|
#blocklyDiv {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
#importExport {
|
|
font-family: monospace;
|
|
}
|
|
|
|
.ioLabel>.blocklyFlyoutLabelText {
|
|
font-style: italic;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body onload="start()">
|
|
|
|
<div id="blocklyDiv"></div>
|
|
</body>
|
|
</html>
|