aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-07-17 13:52:46 -0700
committerGitHub <noreply@github.com>2016-07-17 13:52:46 -0700
commit8c1be9b07ce2dbdd1fe696e3315bc4528846b419 (patch)
treeb70795886644dcc253561cad9bc7020ab5dc7476
parent0fa10df64ae928bccb05ea7c182eeffbed3af8a8 (diff)
parentb9f8df1776d78d724e97a188c209f83cc7417a55 (diff)
downloadservo-8c1be9b07ce2dbdd1fe696e3315bc4528846b419.tar.gz
servo-8c1be9b07ce2dbdd1fe696e3315bc4528846b419.zip
Auto merge of #12364 - kilobtye:textarea, r=jdm
Make textarea scrollable <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #10058 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12364) <!-- Reviewable:end -->
-rw-r--r--resources/servo.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/resources/servo.css b/resources/servo.css
index 98ee52c0982..8ec5e17bbf0 100644
--- a/resources/servo.css
+++ b/resources/servo.css
@@ -132,6 +132,10 @@ textarea {
-servo-overflow-clip-box: content-box;
}
+textarea {
+ overflow: auto;
+}
+
/* https://html.spec.whatwg.org/multipage/rendering.html#the-details-and-summary-elements */
details {
display: block;