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

Side by Side Diff: LayoutTests/fast/repaint/dont-invalidate-root-layer-when-composited-layer-becomes-visible.html

Issue 456963002: Delete RenderLayer::setHasVisibleContent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline inspector test 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 <html>
esprehn 2014/08/11 20:51:56 no doctype :(
2 <head>
3 <script src="../../resources/run-after-display.js"></script>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t>
5 <script type="text/javascript">
6 window.onload = function() {
7 runRepaintTest();
8 };
9
10 function repaintTest() {
11 document.getElementById('target').style.visibility = 'visible';
12 }
13 </script>
14 </head>
15 <body>
16 <div id="target"
17 style="will-change: transform;
18 visibility:hidden;
19 position: absolute;
20 top: 200px; left: 200px;
21 width: 200px; height: 200px;
22 background-color: redl "></div>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698