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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/logical-props/logicalprops-inline-size-vlr.html

Issue 2577363002: Implement CSS Logical Properties: inline/block size (Closed)
Patch Set: Fix webexposed test Created 4 years 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 <meta charset="utf-8">
3 <title>CSS Logical Properties: {max-,min-}inline-size vertical-lr</title>
4 <link rel="help" href="https://drafts.csswg.org/css-logical-props/">
5 <link rel="help" href="https://drafts.csswg.org/css-writing-modes/#logical-to-ph ysical">
6
7 <style>
8 div { writing-mode: vertical-lr;}
9 #div1 {
10 inline-size: 40px; border: 1px solid #000;
11 min-inline-size: 50px;
12 max-inline-size: 100px;
13 }
14 #div2 {
15 inline-size: 100px; border: 1px solid #000;
16 min-inline-size: 50px;
17 max-inline-size: 100px;
18 }
19 #div3 {
20 inline-size: 120px; border: 1px solid #000;
21 min-inline-size: 50px;
22 max-inline-size: 100px;
23 }
24 </style>
25
26 <div id="div1">Hello, this is a test</div>
27 <div id="div2">Hello, this is a test</div>
28 <div id="div3">Hello, this is a test</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698