mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 9a5d71b326166e12784bdd9d161772e20f87c1fd
This commit is contained in:
parent
f7630dad87
commit
4ae3d09ff3
86 changed files with 2739 additions and 640 deletions
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="UTF-8">
|
||||
<title>CSS Test: scrollbar-width should apply on <textarea></title>
|
||||
<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-scrollbars-1/#scrollbar-width">
|
||||
<link rel="match" href="textarea-scrollbar-width-none-ref.html">
|
||||
<style>
|
||||
textarea {
|
||||
scrollbar-width: none;
|
||||
white-space: pre;
|
||||
}
|
||||
</style>
|
||||
<textarea cols="10" rows="10"></textarea>
|
||||
<script>
|
||||
let textarea = document.querySelector("textarea");
|
||||
textarea.value = ('X'.repeat(100) + '\n').repeat(100);
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue