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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl.html

Issue 1873163002: [css-grid] Fix painting in RTL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Upload rebased version after r386952 has landed Created 4 years, 8 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/css-grid-layout/grid-painting-rtl-expected.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
3 <p>This test verifies grid layout painting using RTL direction.</p>
4 <p>This test passes if it matches the reference. You should see green and blue b oxes but not red.</p>
5
6 <iframe height="120px" width="300px" srcdoc="
7 <style>
8 .grid {
9 display: grid;
10 grid: 50px / 200px 100px 50px;
11 width: 500px;
12 direction: rtl;
13 }
14 </style>
15
16 <div class='grid'>
17 <div style='background: red;'></div>
18 <div style='background: blue;'></div>
19 <div style='background: green;'></div>
20 </div>
21 ">
22 </iframe>
23
24 <iframe height="120px" width="300px" srcdoc="
25 <style>
26 .grid {
27 display: grid;
28 grid: 50px / 200px 100px 50px;
29 width: 500px;
30 border: 5px solid;
31 direction: rtl;
32 }
33 </style>
34
35 <div class='grid'>
36 <div style='background: red;'></div>
37 <div style='background: blue;'></div>
38 <div style='background: green;'></div>
39 </div>
40 ">
41 </iframe>
42
43 <iframe height="120px" width="300px" srcdoc="
44 <style>
45 .grid {
46 display: grid;
47 grid: 50px / 200px 100px 50px;
48 width: 500px;
49 border: 5px solid;
50 padding: 10px;
51 direction: rtl;
52 }
53 </style>
54
55 <div class='grid'>
56 <div style='background: red;'></div>
57 <div style='background: blue;'></div>
58 <div style='background: green;'></div>
59 </div>
60 ">
61 </iframe>
62
63 <iframe height="120px" width="300px" srcdoc="
64 <style>
65 .grid {
66 display: grid;
67 grid: 50px / 200px 100px 50px;
68 width: 500px;
69 border: 5px solid;
70 border-right: 100px solid;
71 padding: 10px;
72 padding-right: 200px;
73 direction: rtl;
74 }
75 </style>
76
77 <div class='grid'>
78 <div style='background: red;'></div>
79 <div style='background: blue;'></div>
80 <div style='background: green;'></div>
81 </div>
82 ">
83 </iframe>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698