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

Side by Side Diff: LayoutTests/fast/multicol/span/before-child-anonymous-column-block.html

Issue 1143153006: Remove old multicol tests that were only run with the old implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html style="font-family: Ahem; font-size: 10px; -webkit-font-smoothing: none;">
3 <body>
4 <style>
5 #test1 { -webkit-column-count: 2; }
6 #test2 { -webkit-column-span: all; }
7 #test3 { content: counter(c); }
8 </style>
9 <script>
10 onload = function() {
11 test1 = document.createElement('div');
12 test1.setAttribute('id', 'test1');
13 document.body.appendChild(test1);
14 test2 = document.createElement('div');
15 test2.setAttribute('id', 'test2');
16 test1.appendChild(test2);
17 test3 = document.createElement('div');
18 test3.setAttribute('id', 'test3');
19 test1.appendChild(test3);
20 test4 = document.createElement('div');
21 test1.appendChild(test4);
22 test4.style.display = 'table-row-group';
23 test3.appendChild(document.createTextNode('3'));
24 test4.appendChild(document.createTextNode('4'));
25 document.body.offsetTop;
26 document.body.style.zoom = 2;
27 }
28 </script>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698