haikuwebkit/LayoutTests/fast/forms/checkbox-and-pseudo.html

16 lines
268 B
HTML

<!DOCTYPE html>
<style>
input:before {
display: block;
content: "VISIBLE";
}
</style>
<label>
<input type="checkbox" id="cb">
</label>
<script>
var checkbox = document.getElementById("cb");
checkbox.appendChild(document.createTextNode("Checkbox"));
</script>