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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/vertical-rl/client-rects-crossing-boundaries-nested.html

Issue 2360913004: Support for multiple block fragments in getClientRects(). (Closed)
Patch Set: fast/overflow/overflow-height-float-not-removed-crash3.html crashed because saturated LayoutUnits caused zero height Created 4 years, 2 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 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <style>body { margin:0; }</style>
5 <div style="writing-mode:vertical-rl; columns:4; column-gap:10px; column-fill:au to; height:430px; width:100px; background:yellow;"> <!-- column width is 100px - ->
6 <div style="width:80px;"></div>
7 <div id="middleMulticol" style="columns:2; column-gap:10px; background:lime; "> <!-- column width is 45px -->
8 <div style="width:80px;"></div>
9 <div id="innerMulticol" style="columns:2; column-gap:5px; background:cya n;"> <!-- column width is 20px -->
10 <div id="innerChild" style="width:500px; background:olive;"></div>
11 </div>
12 <div id="middleChild" style="width:200px; background:salmon;"></div>
13 </div>
14 </div>
15 <script>
16 test(function() {
17 var rects = document.getElementById("middleMulticol").getClientRects();
18 assert_equals(rects.length, 4);
19 assert_equals(rects[0].top, 0);
20 assert_equals(rects[0].left, 0);
21 assert_equals(rects[0].bottom, 100);
22 assert_equals(rects[0].right, 20);
23 assert_equals(rects[1].top, 110);
24 assert_equals(rects[1].left, 0);
25 assert_equals(rects[1].bottom, 210);
26 assert_equals(rects[1].right, 100);
27 assert_equals(rects[2].top, 220);
28 assert_equals(rects[2].left, 0);
29 assert_equals(rects[2].bottom, 320);
30 assert_equals(rects[2].right, 100);
31 assert_equals(rects[3].top, 330);
32 assert_equals(rects[3].left, 55);
33 assert_equals(rects[3].bottom, 430);
34 assert_equals(rects[3].right, 100);
35 }, "#middleMulticol");
36
37 test(function() {
38 var rects = document.getElementById("innerMulticol").getClientRects();
39 assert_equals(rects.length, 3);
40 assert_equals(rects[0].top, 110);
41 assert_equals(rects[0].left, 0);
42 assert_equals(rects[0].bottom, 155);
43 assert_equals(rects[0].right, 60);
44 assert_equals(rects[1].top, 165);
45 assert_equals(rects[1].left, 0);
46 assert_equals(rects[1].bottom, 210);
47 assert_equals(rects[1].right, 100);
48 assert_equals(rects[2].top, 220);
49 assert_equals(rects[2].left, 10);
50 assert_equals(rects[2].bottom, 265);
51 assert_equals(rects[2].right, 100);
52 }, "#innerMulticol");
53
54 test(function() {
55 var rects = document.getElementById("innerChild").getClientRects();
56 assert_equals(rects.length, 6);
57 assert_equals(rects[0].top, 110);
58 assert_equals(rects[0].left, 0);
59 assert_equals(rects[0].bottom, 130);
60 assert_equals(rects[0].right, 60);
61 assert_equals(rects[1].top, 135);
62 assert_equals(rects[1].left, 0);
63 assert_equals(rects[1].bottom, 155);
64 assert_equals(rects[1].right, 60);
65 assert_equals(rects[2].top, 165);
66 assert_equals(rects[2].left, 0);
67 assert_equals(rects[2].bottom, 185);
68 assert_equals(rects[2].right, 100);
69 assert_equals(rects[3].top, 190);
70 assert_equals(rects[3].left, 0);
71 assert_equals(rects[3].bottom, 210);
72 assert_equals(rects[3].right, 100);
73 assert_equals(rects[4].top, 220);
74 assert_equals(rects[4].left, 10);
75 assert_equals(rects[4].bottom, 240);
76 assert_equals(rects[4].right, 100);
77 assert_equals(rects[5].top, 245);
78 assert_equals(rects[5].left, 10);
79 assert_equals(rects[5].bottom, 265);
80 assert_equals(rects[5].right, 100);
81 }, "#innerChild");
82
83 test(function() {
84 var rects = document.getElementById("middleChild").getClientRects();
85 assert_equals(rects.length, 4);
86 assert_equals(rects[0].top, 220);
87 assert_equals(rects[0].left, 0);
88 assert_equals(rects[0].bottom, 265);
89 assert_equals(rects[0].right, 10);
90 assert_equals(rects[1].top, 275);
91 assert_equals(rects[1].left, 0);
92 assert_equals(rects[1].bottom, 320);
93 assert_equals(rects[1].right, 100);
94 assert_equals(rects[2].top, 330);
95 assert_equals(rects[2].left, 55);
96 assert_equals(rects[2].bottom, 375);
97 assert_equals(rects[2].right, 100);
98 assert_equals(rects[3].top, 385);
99 assert_equals(rects[3].left, 55);
100 assert_equals(rects[3].bottom, 430);
101 assert_equals(rects[3].right, 100);
102 }, "#middleChild");
103 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698