Bug 1121499 - Make the textarea in the test case for bug 664087 three rows tall so that we don't get a scrollbar on OSX 10.10; r=roc

This commit is contained in:
Ehsan Akhgari 2015-01-14 13:15:26 -05:00
parent a66bcae8e3
commit c6e91735d0
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script> <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head> </head>
<body onload="start()"> <body onload="start()">
<textarea onfocus="done()" spellcheck="false" style="-moz-appearance: none">אב <textarea rows="3" onfocus="done()" spellcheck="false" style="-moz-appearance: none">אב
ג</textarea> ג</textarea>
<script> <script>
var textarea = document.querySelector("textarea"); var textarea = document.querySelector("textarea");

View File

@ -4,7 +4,7 @@
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script> <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head> </head>
<body onload="start()"> <body onload="start()">
<textarea onfocus="typeIntoMe()" spellcheck="false" style="-moz-appearance: none"></textarea> <textarea rows="3" onfocus="typeIntoMe()" spellcheck="false" style="-moz-appearance: none"></textarea>
<script> <script>
function start() { function start() {
document.querySelector("textarea").focus(); document.querySelector("textarea").focus();