mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 07:02:54 +00:00
13 lines
310 B
HTML
13 lines
310 B
HTML
<!DOCTYPE html>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const canvas = document.createElement("canvas");
|
|
const ctx = canvas.getContext("2d");
|
|
|
|
canvas.setAttribute("width", "0");
|
|
canvas.toDataURL();
|
|
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|