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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/column-rule-change.html

Issue 2240753003: Fix column rule under invalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: - Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/column-rule-change-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 <p style="height: 100px">
3 Tests paint invalidation of column rules when column changes without changing ge ometry of the column and the column set.
4 Passes if no under-invalidation is reported.
5 </p>
6 <div id="columns" style="columns: 1; background-color: blue; column-rule: 2px so lid green; width: 200px; height: 200px">
7 <div id="content1" style="display: inline-block; width: 50px; height: 100px; b ackground-color: yellow"></div><br>
8 <div id="content2" style="display: inline-block; width: 50px; height: 100px; b ackground-color: yellow"></div>
9 </div>
10 <script src="../../resources/run-after-layout-and-paint.js"></script>
11 <script>
12 runAfterLayoutAndPaint(function() {
13 columns.style.columns = 2;
14 content1.style.height = '200px';
15 }, true);
16 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/column-rule-change-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698