Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/selection/selection-and-text-repaint.html

Issue 2727843004: needsPaintInvalidation() should not return true for selection. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698