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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup-expected.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
OLDNEW
(Empty)
1 <!doctype html>
2 <style>
3 .c7 { background: white; direction: rtl; }
4 .c7[class*="c7"] { display: table-column-group; }
5 .c13 { display: table-cell; border-style: ridge; will-change: transform; }
6 </style>
7 <script>
8 var nodes = Array();
9 nodes[1] = document.createElement('label');
10 nodes[1].setAttribute('class', 'c7');
11 document.documentElement.appendChild(nodes[1]);
12 nodes[2] = document.createElement('colgroup');
13 nodes[2].setAttribute('class', 'c11');
14 document.documentElement.appendChild(nodes[2]);
15 nodes[3] = document.createElement('aside');
16 nodes[3].setAttribute('class', 'c13');
17 document.documentElement.appendChild(nodes[3]);
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698