Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-textarea-element/multiline-placeholder-cr.html - WPT Dashboard Interop Dashboard
<!doctype html>↩<html class="reftest-wait">↩<meta charset="utf-8">↩<title>textarea multiline placeholder (CR)</title>↩<link rel="help" href="https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-placeholder">↩<meta name="assert" content="textarea element's placeholder preserves newlines (CR)">↩<link rel="match" href="multiline-placeholder-ref.html">↩<link rel="stylesheet" href="support/placeholder.css">↩<textarea rows="5" placeholder="this is↩a multiline↩↩placeholder"></textarea>↩<textarea rows="5" placeholder="this is
a multiline

placeholder"></textarea>↩<textarea rows="5" id="dynamic"></textarea>↩<script>↩ document.querySelector("#dynamic")↩ .setAttribute("placeholder", "this is\ra multiline\r\rplaceholder");↩ document.documentElement.classList.remove("reftest-wait");↩</script>↩</html>↩