Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/attributes-for-embedded-content-and-images/textarea-placeholder-scroll.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Overflowing textarea placeholder should be scrollable</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<textarea id="t" rows="2" placeholder="line1 line2 line3 line4 line5 line6 line7 line8 line9 line10"></textarea>
<script>
test(() => {
assert_greater_than(t.scrollHeight, t.clientHeight);
});
</script>