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

Side by Side Diff: LayoutTests/fast/multicol/vertical-lr/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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .test {
4 width: 100px;
5 height: 100px;
6 }
7
8 .left { border-left: 50px solid blue; }
9 .right { border-right: 50px solid blue; }
10
11 .test div {
12 width: 100px;
13 height: 50px;
14 background-color: orange;
15 position: relative;
16 top: 25px;
17 }
18 </style>
19 <p>There should be a 50px blue border to the left of an orange rectangle:</p>
20 <div class="test left"><div></div></div>
21 <p>There should be a 50px blue border to the right of an orange rectangle:</p>
22 <div class="test right"><div></div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698