Tabindex ignored with LT enabled

Hello
we recently added some “tabindex” to some of our pages so that users can tabulate from one field to another in a predefined way.
When LT Chrome extension is disabled it’s working as planned.
With LT enabled the tab behavior is totally different.
Is there a way to disable LT on a specific page with an instruction in the HTML header ?
Thank you
Jérôme

1 Like

This would be the minimal reproduction:

<div>
  <label>1</label>
  <input tabindex="1" />
</div>
<div>
  <label>2</label>
  <textarea tabindex="1" style="width:300px; height:200px;"> </textarea>
</div>
<div>
  <label>3</label>
  <input tabindex="1" />
</div>
<button>button</button>

When LT is not enabled on the textarea, tab order is 1, 2, 3, button
However, with LT enabled on it, the tab order is different: 1, 3, 2, button