Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <select> | |
| 3 <option id="opt">FAIL</option> | |
| 4 </select> | |
| 5 <script> | |
| 6 testRunner.waitUntilDone(); | |
| 7 requestAnimationFrame(() => { | |
| 8 document.querySelector('#opt').textContent = ''; | |
| 9 requestAnimationFrame(() => { testRunner.notifyDone(); }); | |
| 10 }); | |
| 11 </script> | |
| OLD | NEW |