mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
Note: MANIFEST updated per the normal procedure using `mach wpt-manifest-update` lint.whitelist updated to reflect intentional use of CR in these tests. Resolves #977
22 lines
874 B
HTML
22 lines
874 B
HTML
<!doctype html>
|
|
<html class="reftest-wait">
|
|
<meta charset="utf-8">
|
|
<title>textarea multiline placeholder</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">
|
|
<link rel="match" href="/html/form-elements/the-textarea-element/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\na multiline\n\nplaceholder");
|
|
document.documentElement.classList.remove("reftest-wait");
|
|
</script>
|
|
</html>
|
|
|
|
|