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

Side by Side Diff: LayoutTests/fast/multicol/span/clone-summary.html

Issue 871473002: Rename and turn fast/multicol/span/clone-summary.html into a reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/span/clone-summary-expected.png » ('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 <html>
3 <body style="font-family: Ahem; -webkit-font-smoothing: none;">
4 <style>
5 #container { -webkit-column-width: 100px; }
6 #div1 { -webkit-column-span: all; }
7 #summary1 { color: white; }
8 </style>
9 <script>
10 document.body.offsetTop;
11 var container = document.createElement('div');
12 container.setAttribute('id', 'container');
13 document.body.appendChild(container);
14 summary1 = document.createElement('summary');
15 summary1.setAttribute('id', 'summary1');
16 container.appendChild(summary1);
17 var div1 = document.createElement('div');
18 div1.setAttribute('id', 'div1');
19 summary1.style.display = 'table-row';
20 summary1.appendChild(document.createTextNode('a'));
21 summary1.appendChild(div1);
22 summary1.appendChild(document.createTextNode('b'));
23 </script>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/span/clone-summary-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698