Files
pyscript/pyscript.core/test/table.html
2023-06-15 17:08:28 +02:00

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>