servo: Merge #12364 - Make textarea scrollable (from kilobtye:textarea); r=jdm

<!-- 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. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: 8c1be9b07ce2dbdd1fe696e3315bc4528846b419
This commit is contained in:
kilobtye 2016-07-17 13:52:46 -07:00
Родитель da8a7b9083
Коммит 7bf9bf9fc8
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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;