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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup.html

Issue 2522923003: Reference table row via the cell for row background display item client. (Closed)
Patch Set: Integrate feedback. Created 4 years 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/tables/table-cell-changes-to-colgroup-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 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <!-- Test passes if it does not crash on an ASAN build. -->
4 <style>
5 .c7 {
6 background: white;
7 display: table-column-group;
8 }
9 .c13 {
10 display: table-cell;
11 border-style: ridge;
12 will-change: transform;
13 }
14 </style>
15 <script>
16 var label = document.createElement('label');
17 label.setAttribute('class', 'c13');
18 document.documentElement.appendChild(label);
19 var colgroup = document.createElement('colgroup');
20 colgroup.setAttribute('class', 'c13');
21 document.documentElement.appendChild(colgroup);
22 var aside = document.createElement('aside');
23 aside.setAttribute('class', 'c13');
24 document.documentElement.appendChild(aside);
25 if (window.testRunner)
26 testRunner.waitUntilDone();
27 runAfterLayoutAndPaint(function() {
28 colgroup.setAttribute('class', 'c11');
29 label.setAttribute('class', 'c7');
30 }, true);
31 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698