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

Side by Side Diff: LayoutTests/fast/table/outline-change-in-table-cell.html

Issue 744493002: Let RenderTable reach table cells needing overflow recalc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix layout test crash Created 6 years, 1 month 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 <script src="../repaint/resources/text-based-repaint.js"></script>
3 <script>
4 function repaintTest() {
5 document.getElementById('target').style.outline = '20px solid green';
6 }
7 onload = runRepaintTest;
8 </script>
9 <p style="height: 100px">
10 Tests overflow recalc and paint invalidation in a table cell when outline change s.
11 Passes if there is a thick green outline and no red.
12 </p>
13 <table style="border: none; margin: 30px">
14 <tr>
15 <td>
16 <div id="target" style="width: 100px; height: 100px; outline: 1px solid re d"></div>
17 </td>
18 </tr>
19 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698