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

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

Issue 2339973002: Handle exclusive end offsets when translating from flow thread coordinates. (Closed)
Patch Set: Documentation 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-at-boundaries.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-gap:1 0px; column-fill:auto; width:100px; height:320px;">
5 <div id="first" style="width:100px;"></div>
6 <div id="second" style="width:100px;"></div>
7 <div id="third" style="width:100px;"></div>
8 </div>
9 <script>
10 test(function() {
11 assert_equals(document.getElementById('first').offsetLeft, 0);
12 assert_equals(document.getElementById('first').offsetTop, 0);
13 }, "offsetLeft and offsetTop in vertical-lr at column boundaries, first elem ent");
14
15 test(function() {
16 assert_equals(document.getElementById('second').offsetLeft, 0);
17 assert_equals(document.getElementById('second').offsetTop, 110);
18 }, "offsetLeft and offsetTop in vertical-lr at column boundaries, second ele ment");
19
20 test(function() {
21 assert_equals(document.getElementById('third').offsetLeft, 0);
22 assert_equals(document.getElementById('third').offsetTop, 220);
23 }, "offsetLeft and offsetTop in vertical-lr at column boundaries, third elem ent");
24 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/vertical-rl/offset-top-and-left-at-boundaries.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698