| <!-- | |
| The children changed / reorder event is fired an unpredictable number of times. | |
| @WIN-DENY:EVENT_OBJECT_REORDER* | |
| @UIA-WIN-DENY:StructureChanged/ChildrenReordered* | |
| --> | |
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <div role="group" id="main" aria-label="main"><h1 aria-label="A">A</h1><p aria-label="B">B</p></div> | |
| <script> | |
| function go() { | |
| document.querySelector('#main').innerHTML = '<h1 aria-label="C">C</h1><p aria-label="D">D</p>'; | |
| } | |
| </script> | |
| </body> | |
| </html> |