mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
12 lines
308 B
HTML
12 lines
308 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const inputElement = document.createElement("input");
|
|
inputElement.type = "color";
|
|
inputElement.value = "#000000";
|
|
inputElement.select();
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|