mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
11 lines
277 B
HTML
11 lines
277 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const progressElement = document.createElement("progress");
|
|
progressElement.max = 100;
|
|
progressElement.value = 50;
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|