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

Side by Side Diff: LayoutTests/paint/tables/table-section-visual-overflow.html

Issue 1158193011: Include overflows from visual effects in LayoutTableSection. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/paint/tables/table-section-visual-overflow-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype HTML>
2 <style type="text/css">
3 #test
4 {
5 display: table-row-group;
6 outline-color: black;
7 outline-style: solid;
8 outline-width: 10px;
9 }
10 #row
11 {
12 display: table-row;
13 }
14 #table
15 {
16 display: table;
17 table-layout: fixed;
18 /* Position the table to overlap a raster tile only for outline */
19 position: relative;
20 left: 145px;
21 }
22 #cell
23 {
24 display: table-cell;
25 height: 100px;
26 width: 100px;
27 }
28 </style>
29 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
30 <div id="table">
31 <div id="test">
32 <div id="row">
33 <div id="cell"></div>
34 </div>
35 </div>
36 </div>
37 <script>
38 window.enablePixelTesting = true;
39 function repaintTest() {
40 // Moving to 0px will demonstrate the bug, since the invalidation rectangle will not include
41 // the outline.
42 table.style.left = "0px";
43 }
44
45 onload = function() {
46 runRepaintTest();
47 }
48 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/paint/tables/table-section-visual-overflow-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698