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

Side by Side Diff: LayoutTests/fast/repaint/composited-inline-repaint.html

Issue 434453002: Promote inlines to first-class invalidation citizens (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add test and expectations Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 a {
4 /* Test needs to start with and maintain a layer for the inline. */
5 transition: all 1ms ease;
6 will-change: opacity;
7 opacity: 0.99;
8 color: red;
9 font-family: Ahem;
10 }
11 </style>
12 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
13 <a id="test">Test passes if this text is green.</a>
14 <script>
15 onload = runRepaintTest;
16 function repaintTest()
17 {
18 document.getElementById('test').style.color = 'green';
19 }
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698