AX: Make accessibility/mac/input-slider.html await dynamic page changes so it can pass in ITM
<rdar://problem/102827179>
Created attachment 463815 [details] Patch
(In reply to Tyler Wilcock from comment #2) > Created attachment 463815 [details] > Patch + var slider = document.getElementById("slider"); + var sliderAXObject = accessibilityController.accessibleElementById("slider"); In cases like this, can we just call the AX object variable like axSlider? i.e., the DOM element foo and the AX object axFoo.
Committed 257297@main (75825c6ed268): <https://commits.webkit.org/257297@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 463815 [details].
(In reply to Andres Gonzalez from comment #3) > (In reply to Tyler Wilcock from comment #2) > > Created attachment 463815 [details] > > Patch > > + var slider = document.getElementById("slider"); > + var sliderAXObject = > accessibilityController.accessibleElementById("slider"); > > In cases like this, can we just call the AX object variable like axSlider? > i.e., the DOM element foo and the AX object axFoo. Oops, forgot to respond to this. Definitely agree — sliderAXObject was the name in the existing version of the test, but will follow this naming scheme for future patches.