mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-16 05:51:55 +00:00
9 lines
220 B
HTML
9 lines
220 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let imageData = new ImageData(100, 100);
|
|
println(imageData.data);
|
|
println(imageData.data.length);
|
|
});
|
|
</script>
|