blob: 8544add4d310fb54a62ce21b16ca0e89b5677ffe [file] [log] [blame]
<!DOCTYPE html>
<p>Check if text in a validation bubble renders newlines.</p>
<input>
<script>
const input = document.querySelector('input');
input.setCustomValidity('hello\nworld');
input.reportValidity();
</script>