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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/direct-child-column-span-all.html

Issue 341103002: [New Multicolumn] Remove unnecessary calls to setRegionBasedColumnsEnabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css"> 4 <style type="text/css">
5 #article1 { -webkit-columns: 1; } 5 #article1 { -webkit-columns: 1; }
6 #p1 { -webkit-column-span: all; } 6 #p1 { -webkit-column-span: all; }
7 </style> 7 </style>
8
9 <script type="text/javascript">
10 if(window.internals)
11 internals.settings.setRegionBasedColumnsEnabled(true);
12 </script>
13 </head> 8 </head>
14 <body> 9 <body>
15 <div id="article1"> 10 <div id="article1">
16 <p id="p1">PASS</p> 11 <p id="p1">PASS</p>
17 </div> 12 </div>
18 <div>Test passes if it doesn't crash or assert.</div> 13 <div>Test passes if it doesn't crash or assert.</div>
19 <div>Test added as part of <a href="https://code.google.com/p/chromium/i ssues/detail?id=242129">242129 - ASSERTION FAILED: !node || node->isElementNode( ), UNKNOWN in WebCore::RenderBlock::clone</a></div> 14 <div>Test added as part of <a href="https://code.google.com/p/chromium/i ssues/detail?id=242129">242129 - ASSERTION FAILED: !node || node->isElementNode( ), UNKNOWN in WebCore::RenderBlock::clone</a></div>
20 </body> 15 </body>
21 </html> 16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698