mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
35 lines
979 B
HTML
35 lines
979 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<title>python</title>
|
|
<style>
|
|
table {
|
|
background-color: silver;
|
|
}
|
|
tr {
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script type="module" src="../min.js"></script>
|
|
</head>
|
|
<body>
|
|
<table cellspacing="2" cellpadding="2">
|
|
<tr>
|
|
<td>check edge cases</td>
|
|
<script type="micropython">
|
|
import sys
|
|
import js
|
|
|
|
td = js.document.createElement('td')
|
|
td.textContent = 'OK'
|
|
js.document.currentScript.target = td
|
|
</script>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|