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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/paint/tables/table-section-visual-overflow-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/paint/tables/table-section-visual-overflow.html
diff --git a/LayoutTests/paint/tables/table-section-visual-overflow.html b/LayoutTests/paint/tables/table-section-visual-overflow.html
new file mode 100644
index 0000000000000000000000000000000000000000..512a7b96cd9dc24ff0ed9f1534428a545b6290d1
--- /dev/null
+++ b/LayoutTests/paint/tables/table-section-visual-overflow.html
@@ -0,0 +1,48 @@
+<!doctype HTML>
+<style type="text/css">
+ #test
+ {
+ display: table-row-group;
+ outline-color: black;
+ outline-style: solid;
+ outline-width: 10px;
+ }
+ #row
+ {
+ display: table-row;
+ }
+ #table
+ {
+ display: table;
+ table-layout: fixed;
+ /* Position the table to overlap a raster tile only for outline */
+ position: relative;
+ left: 145px;
+ }
+ #cell
+ {
+ display: table-cell;
+ height: 100px;
+ width: 100px;
+ }
+</style>
+<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
+<div id="table">
+ <div id="test">
+ <div id="row">
+ <div id="cell"></div>
+ </div>
+ </div>
+</div>
+<script>
+window.enablePixelTesting = true;
+function repaintTest() {
+ // Moving to 0px will demonstrate the bug, since the invalidation rectangle will not include
+ // the outline.
+ table.style.left = "0px";
+}
+
+onload = function() {
+ runRepaintTest();
+}
+</script>
« 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