Az oldal korlátolt funkcionalitással fog rendelkezni, amíg elvégezzük a felhasználói élményt javító karbantartást. Ha egy leírás nem oldja meg a problémáját, és kérdést tenne fel, akkor a támogatási közösségünk a @FirefoxSupport Twitter oldalon tud segíteni, vagy az /r/firefox oldalon a Redditen.

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

Jerky on repeatd right/left arrow keys in large textarea

  • 2 válasz
  • 2 embernek van ilyen problémája
  • 2 megtekintés
  • Utolsó üzenet ettől: eggjim

more options

Firefox 63... is jerky on right/left arrows in a large textarea. Holding down a right or left arrow shows the problem: Run the following sample code, holding downing either right or left arrows near the bottom of the area to exprience the issue.

<font size=5 color=red> Firefox: Holding down left/right arrow near the bottom of textarea, is jerky
Chrome, IE: ok </font>

<textarea id="ta1" rows="500" cols="80"> </textarea> <script> //----- Build textarea data (to edit) var msg = ""; for(var i=0; i<500; i++) { msg = msg + "Line " + i + ": Some test data to make this line of text fairly long\n"; } document.getElementById("ta1").value = msg; </script>

Firefox 63... is jerky on right/left arrows in a large textarea. Holding down a right or left arrow shows the problem: Run the following sample code, holding downing either right or left arrows near the bottom of the area to exprience the issue. <!DOCTYPE html> <html> <body> <font size=5 color=red> Firefox: Holding down left/right arrow near the bottom of textarea, is jerky<br> Chrome, IE: ok </font><P> <textarea id=ta1 rows="500" cols="80"> </textarea> <script> //----- Build textarea data (to edit) var msg = ""; for(var i=0; i<500; i++) { msg = msg + "Line " + i + ": Some test data to make this line of text fairly long\n"; } document.getElementById("ta1").value = msg; </script> </body></html>

Összes válasz (2)

more options

Start Firefox in Safe Mode to check if one of the extensions ("3-bar" menu button or Tools -> Add-ons -> Extensions) or if hardware acceleration is is causing the problem.

  • switch to the DEFAULT theme: "3-bar" menu button or Tools -> Add-ons -> Appearance
  • do NOT click the "Refresh Firefox" button on the Safe Mode start window

This can also be a problem with the sessionstore file(s) that take too long to update. You can check browser.sessionstore and try to increase the value of this pref (default is 15 sec.).

  • browser.sessionstore.interval

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.

more options

Thanks you for your response. I followed the above directions. That did NOT help, right / left arrows are still jerky. All other keys seem fine, just the right and left arrow keys. The following small html/javascript shows the problem:

<font size=5 color=red>
  Firefox: Holding down left/right arrow near the bottom of textarea, is jerky<br>
  Chrome, IE: ok </font><P>

<textarea id=ta1  rows="500" cols="80"> </textarea>
  
<script>

   //----- Build textarea data (to edit)
   var msg = "";
   for(var i=0; i<500; i++) {
      msg = msg + "Line " + i + 
            ": Some test data to make this line of text fairly long\n"; 
   }
   document.getElementById("ta1").value = msg;

</script>

Módosította: cor-el,