mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-02 21:25:16 +03:00
Fix canvas is not a self closing tag. (#2408)
Co-authored-by: ltzz <ltzz@users.noreply.github.com>
This commit is contained in:
parent
b79f5b2739
commit
9d80e7dc17
@ -3,6 +3,6 @@
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="canvas" height="150" width="150" />
|
||||
<canvas id="canvas" height="150" width="150"></canvas>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="canvas" height="150" width="150" />
|
||||
<canvas id="canvas" height="150" width="150"></canvas>
|
||||
<script src='./index.js'></script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,6 +3,6 @@
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="canvas" height="150" width="150" />
|
||||
<canvas id="canvas" height="150" width="150"></canvas>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,6 +3,6 @@
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||||
</head>
|
||||
<body>
|
||||
<canvas id="canvas" height="150" width="150" />
|
||||
<canvas id="canvas" height="150" width="150"></canvas>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user