tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

multiline-placeholder-cr.html (841B)


      1 <!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 isa multilineplaceholder"></textarea><textarea rows="5" placeholder="this is&#xd;a multiline&#xd;&#xd;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>