Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 ::selection { color: red } | |
| 4 .green { color: green } | |
| 5 </style> | |
| 6 <p id="t1">This text should be green.</p> | |
| 7 <script> | |
| 8 if (window.testRunner) | |
| 9 testRunner.waitUntilDone(); | |
| 10 | |
| 11 requestAnimationFrame(() => | |
| 12 requestAnimationFrame(() => { | |
| 13 t1.className = "green"; | |
| 14 if (window.testRunner) | |
| 15 testRunner.notifyDone(); | |
| 16 })); | |
| 17 </script> | |
| OLD | NEW |