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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/vertical-lr/offset-top-and-left-nested.html

Issue 2344813003: Correct flowThreadTranslationAtOffset() for vertical-rl writing mode. (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/vertical-rl/offset-top-and-left-nested.html » ('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 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <div style="position:relative; writing-mode:vertical-lr; columns:3; column-fill: auto; column-gap:10px; width:100px; height:350px;">
5 <div style="columns:2; column-fill:auto; column-gap:10px; width:200px;">
6 <div style="width:250px;"></div>
7 <div id="in-second-row" style="width:20px;"></div>
8 </div>
9 </div>
10
11 <script>
12 test(function() {
13 assert_equals(document.getElementById('in-second-row').offsetLeft, 50);
14 assert_equals(document.getElementById('in-second-row').offsetTop, 120);
15 }, "offsetLeft and offsetTop in vertical-lr in nested multicol");
16 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/vertical-rl/offset-top-and-left-nested.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698