Initial commit of 001code-html Scratch frontend project.

Includes scratch-gui, scratch-vm, scratch-blocks, scratch-render, scratch-l10n, and deployment config.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-16 15:37:45 +08:00
commit 6e0a1fbcbb
11350 changed files with 965674 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Unit Tests for Vertical Scratch-Blockly</title>
<script src="../../blockly_uncompressed_vertical.js"></script>
<script>goog.require('goog.testing.jsunit');</script>
</head>
<body>
<script src="test_utilities.js"></script>
<script src="block_test.js"></script>
<script src="connection_db_test.js"></script>
<script src="connection_test.js"></script>
<script src="event_test.js"></script>
<script src="extensions_test.js"></script>
<script src="field_test.js"></script>
<script src="field_angle_test.js"></script>
<script src="field_number_test.js"></script>
<script src="field_variable_getter_test.js"></script>
<script src="generator_test.js"></script>
<script src="input_test.js"></script>
<script src="json_test.js"></script>
<script src="names_test.js"></script>
<script src="procedure_test.js"></script>
<script src="scratch_block_comment_test.js"></script>
<script src="svg_test.js"></script>
<script src="utils_test.js"></script>
<script src="widget_div_test.js"></script>
<script src="workspace_comment_test.js"></script>
<script src="workspace_test.js"></script>
<script src="xml_test.js"></script>
<div id="blocklyDiv" style="display: none; height: 480px; width: 600px;"></div>
<xml id="toolbox" style="display: none"></xml>
</body>
</html>