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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/span/change-multicol-writing-mode.html

Issue 2000683002: Keep writing-mode in sync between a column spanner and its placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: There should no longer be any need for LayoutTable to propagateStyleToAnonymousChildren(), since La… Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .square { break-inside:avoid; width:20px; height:20px; background:hotpink; }
4 </style>
5 <p>There should be five consecutive squares below, from left to right: hotpink, blue, hotpink, blue, hotpink.</p>
6 <div id="multicol" style="columns:1; background:blue;">
7 <div class="square"></div>
8 <div class="square" style="column-span:all;" id="spanner"></div>
9 <div class="square"></div>
10 </div>
11 <script>
12 document.body.offsetTop;
13 document.getElementById("multicol").style.writingMode = "tb-rl";
14 document.getElementById("spanner").style.margin = "0 20px";
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698