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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-current-color.html

Issue 2838643003: Invalidate collapsed borders using currentColor when color changes (Closed)
Patch Set: - Created 3 years, 8 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/table/collapsed-border-current-color-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>
3 table {
4 border-collapse: collapse;
5 margin: 30px;
6 }
7 td {
8 width: 100px;
9 height: 50px;
10 }
11 .border {
12 border: 10px solid currentColor;
13 }
14 </style>
15 All borders should change to green.
16 <table class="border"><tr><td></td></tr></table>
17 <table><colgroup><col class="border"></colgroup><tr><td></td></tr></table>
18 <!--
19 TODO(wangxianzhu): Enable these after crbug.com/626748 is fixed.
20 <table><tbody class="border"><tr><td></td></tr></tbody></table>
21 <table><tr class="border"><td></td></tr></table>
22 -->
23 <table><tr><td class="border"></td></tr></table>
24 <script src="../../../resources/run-after-layout-and-paint.js"></script>
25 <script>
26 runAfterLayoutAndPaint(function() {
27 document.body.style.color = 'green';
28 }, true);
29 </script>
30
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-current-color-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698