| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> |
| 4 <title>CSS Test: Relative Positioning - overconstrained left = -right (LTR)<
/title> |
| 5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.
net/contact"/> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/Brow
serBugsSection/css21testsuite/" /> <!-- 2012-09-25 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-posi
tioning" /> |
| 8 <link rel="match" href="relpos-calcs-001-ref.xht" /> |
| 9 |
| 10 <meta name="flags" content="" /> |
| 11 <meta name="assert" content="For a relatively positioned element in an LTR |
| 12 containing block, if neither 'left' nor 'right' is 'auto', used value of |
| 13 'right' is minus the value of 'left'." /> |
| 14 <style type="text/css"> |
| 15 div { |
| 16 height: 120px; |
| 17 width: 80px; |
| 18 direction: rtl; |
| 19 margin-right: auto; |
| 20 } |
| 21 .container { |
| 22 direction: ltr; /* only set LTR on the containing block in question
*/ |
| 23 } |
| 24 .outer { |
| 25 background: green; |
| 26 position: relative; |
| 27 left: 50%; |
| 28 right: 50%; |
| 29 |
| 30 /* |
| 31 div.outer's used left value is 60px |
| 32 div.outer's used right value is -60px |
| 33 div.outer's computed left value is 50% |
| 34 div.outer's computed right value is 50% |
| 35 */ |
| 36 |
| 37 } |
| 38 .inner { |
| 39 background: green; |
| 40 position: relative; |
| 41 right: inherit; /* using inheritance to test computed vs. used */ |
| 42 /* div.inner's right inherits div.outer's computed right value */ |
| 43 } |
| 44 .control { |
| 45 background: red; |
| 46 margin-bottom: -120px; |
| 47 width: 120px; |
| 48 } |
| 49 </style> |
| 50 </head> |
| 51 <body> |
| 52 <p>Test passes if there is a filled green square and <strong>no red</strong>
.</p> |
| 53 <div class="control"></div> |
| 54 <div class="container" dir="ltr"> |
| 55 <div class="outer" dir="rtl"> |
| 56 <div class="inner"></div> |
| 57 </div> |
| 58 </div> |
| 59 </body> |
| 60 </html> |
| OLD | NEW |