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

Unified Diff: LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html

Issue 701803002: Convert fast/multicol/vertical-[lr, rl]/rules-with-border-before to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename .[left,right] to .[before, after], where appropriate. Created 6 years, 1 month 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: LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html
diff --git a/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html b/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..3dbecb4790301dffbed39117f4096700ce4d10f1
--- /dev/null
+++ b/LayoutTests/fast/multicol/vertical-rl/rules-with-border-before-expected.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<style>
+ .test {
+ width: 100px;
+ height: 100px;
+ }
+
+ .right { border-right: 50px solid blue; }
+ .left { border-left: 50px solid blue; }
+
+ .test div {
+ width: 100px;
+ height: 50px;
+ background-color: orange;
+ position: relative;
+ top: 25px;
+ }
+</style>
+<p>There should be a 50px blue border to the left of an orange rectangle:</p>
+<div class="test right"><div></div></div>
+<p>There should be a 50px blue border to the right of an orange rectangle:</p>
+<div class="test left"><div></div></div>

Powered by Google App Engine
This is Rietveld 408576698