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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl-expected.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..a4e82c374e0490552a703015819b3eb22ef5d4bd
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-painting-rtl-expected.html
@@ -0,0 +1,75 @@
+<!DOCTYPE html>
+
+<p>This test verifies grid layout painting using RTL direction.</p>
+<p>This test passes if it matches the reference. You should see green and blue boxes but not red.</p>
+
+<iframe height="120px" width="300px" srcdoc="
+ <style>
+ .grid {
+ position: relative;
+ width: 500px;
+ height: 50px;
+ }
+ </style>
+
+ <div class='grid'>
+ <div style='background: green; position: absolute; width: 50px; height: 50px; left: 150px'></div>
+ <div style='background: blue; position: absolute; width: 100px; height: 50px; left: 200px'></div>
+ </div>
+">
+</iframe>
+
+<iframe height="120px" width="300px" srcdoc="
+ <style>
+ .grid {
+ position: relative;
+ width: 500px;
+ height: 50px;
+ border: 5px solid;
+ }
+ </style>
+
+ <div class='grid'>
+ <div style='background: green; position: absolute; width: 50px; height: 50px; left: 150px'></div>
+ <div style='background: blue; position: absolute; width: 100px; height: 50px; left: 200px'></div>
+ </div>
+">
+</iframe>
+
+<iframe height="120px" width="300px" srcdoc="
+ <style>
+ .grid {
+ position: relative;
+ width: 500px;
+ height: 50px;
+ border: 5px solid;
+ padding: 10px;
+ }
+ </style>
+
+ <div class='grid'>
+ <div style='background: green; position: absolute; width: 50px; height: 50px; left: 160px'></div>
+ <div style='background: blue; position: absolute; width: 100px; height: 50px; left: 210px'></div>
+ </div>
+">
+</iframe>
+
+<iframe height="120px" width="300px" srcdoc="
+ <style>
+ .grid {
+ position: relative;
+ width: 500px;
+ height: 50px;
+ border: 5px solid;
+ border-right: 100px solid;
+ padding: 10px;
+ padding-right: 200px;
+ }
+ </style>
+
+ <div class='grid'>
+ <div style='background: green; position: absolute; width: 50px; height: 50px; left: 160px'></div>
+ <div style='background: blue; position: absolute; width: 100px; height: 50px; left: 210px'></div>
+ </div>
+">
+</iframe>

Powered by Google App Engine
This is Rietveld 408576698