scratch-blocks/tests/jsunit/horizontal_tests.html
Rodrigo Queiro 4daf3cd16f Increase active area on one-field-blocks
If a block only has one field, the mouseup event (which triggers editing
of editable fields) will be bound to the block instead of the field.

Fixes #132.
2016-03-31 16:43:17 +02:00

23 lines
817 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Unit Tests for Horizontal Scratch-Blockly</title>
<script src="../../blockly_uncompressed_horizontal.js"></script>
<script>goog.require('goog.testing.jsunit');</script>
</head>
<body>
<script src="blockly_test.js"></script>
<script src="block_test.js"></script>
<script src="connection_test.js"></script>
<script src="connection_db_test.js"></script>
<script src="generator_test.js"></script>
<script src="names_test.js"></script>
<script src="workspace_test.js"></script>
<script src="xml_test.js"></script>
<script src="svg_test.js"></script>
<div id="blocklyDiv" style="display: none; height: 480px; width: 600px;"></div>
<xml id="toolbox" style="display: none"></xml>
</body>
</html>