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

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

Issue 2577363002: Implement CSS Logical Properties: inline/block size (Closed)
Patch Set: Refactor test case, add {inline-,block-}size overrides width height 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-}block-size vertical-lr</title>
rune 2016/12/22 11:29:34 We normally avoid unnecessary elements like <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 {
9 border: 1px solid #000;
10 writing-mode: vertical-lr;
11 }
12 #div1 {
13 block-size: 40px;
14 min-block-size: 50px;
15 max-block-size: 100px;
16 }
17 #div2 {
18 block-size: 100px;
19 min-block-size: 50px;
20 max-block-size: 100px;
21 }
22 #div3 {
23 block-size: 120px;
24 min-block-size: 50px;
25 max-block-size: 100px;
26 }
27
28 p {
29 border: 1px solid #000;
30 writing-mode: vertical-lr;
31 }
32 #p1 {
33 block-size: 100px;
34 width: 50px;
35 }
36 #p2 {
37 width: 50px;
38 block-size: 100px;
39 }
40 </style>
41
42 <div id="div1">Hello, this is a test</div>
43 <div id="div2">Hello, this is a test</div>
44 <div id="div3">Hello, this is a test</div>
45
46 <p id="p1">Hello, this is a test</div>
47 <p id="p2">Hello, this is a test</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698