Chromium Code Reviews

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/invisible-objects.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="resources/text-based-repaint.js"></script>
4 <script>
5 function repaintTest()
6 {
7 document.getElementById("block").style.height = "100px";
8 document.getElementById("inline").innerText = "is invisible";
9 }
10 </script>
11 </head>
12 <body onload="runRepaintAndPixelTest()">
13 <div style="visibility: hidden; position: relative;">
14 <span id="inline">Invisible text</span>
15 </div>
16 <div style="visibility: hidden; position: relative;">
17 <div id="block" style="height: 50px;"></div>
18 </div>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine