mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 09:41:02 +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>
|