tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

overconstrained-rel-pos-rtl-top-bottom-vlr-007.xht (2988B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4 
      5  <head>
      6 
      7   <title>CSS Writing Modes Test: over-constrained relatively positioned element - 'direction: rtl' and 'top' and 'bottom' are not 'auto' in vertical-lr context</title>
      8 
      9   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
     10   <!--
     11   Credits should go to Aleks Totić for reporting
     12   Issue 695270: overconstrained position:relative in vertical-xx is not in compliance with spec
     13   https://bugs.chromium.org/p/chromium/issues/detail?id=695270
     14   and for providing an excellent test originally demonstrating the particular feature
     15   being checked in this test.
     16   -->
     17   <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layout" title="7.1 Principles of Layout in Vertical Writing Modes" />
     18   <link rel="match" href="overconstrained-rel-pos-rtl-top-bottom-vlr-007-ref.xht" />
     19 
     20   <meta name="flags" content="image" />
     21   <meta name="assert" content="When a relatively positioned element's 'direction' is 'rtl' and its 'top' and 'bottom' are not 'auto' in a vertical-lr context, then the value of 'top' wins and 'bottom' becomes -'top'." />
     22 
     23   <meta name="DC.date.created" content="2017-02-23T09:54:03+11:00" scheme="W3CDTF" />
     24   <meta name="DC.date.modified" content="2017-02-28T09:54:03+11:00" scheme="W3CDTF" />
     25 
     26   <style type="text/css"><![CDATA[
     27   html
     28     {
     29       background: transparent url("support/bg-red-1col-3row-320x320.png") no-repeat 278px calc(100% - 8px);
     30       /*
     31         16px : p's margin-right
     32        246px : img's width
     33         16px : p's margin-left
     34       ========
     35        278px : background-position from the left edge of document box
     36       */
     37 
     38       /* top = 8px since the red fail square is already on 3rd row in bg-red-1col-3row-320x320 */
     39 
     40       direction: rtl;
     41       writing-mode: vertical-lr;
     42     }
     43 
     44 /*
     45 Layout calculation rules (such as those in CSS2.1, Section 9.4.3) that apply to the horizontal dimension in horizontal writing modes instead apply to the vertical dimension in vertical writing modes.
     46 
     47 So here, top and bottom offset properties are input into the §9.4.3 algorithms where top offset property refer to left offset property in the layout rules and where bottom offset property refer to right offset property in the layout rules.
     48 */
     49 
     50   div
     51     {
     52       background-color: green;
     53       bottom: 80px;
     54       height: 80px;
     55       position: relative;
     56       top: 80px;
     57       width: 80px;
     58     }
     59 
     60   /*
     61   Here, 'bottom' should win, 'top' should be ignored and the used top value should become -'bottom'.
     62   */
     63   ]]></style>
     64 
     65  </head>
     66 
     67  <body>
     68 
     69   <p><img src="support/pass-cdts-abs-pos-non-replaced.png" width="246" height="36" alt="Image download support must be enabled" /></p>
     70 
     71   <!--
     72   The image says:
     73   Test passes if there is a filled
     74   green square and <strong>no red</strong>.
     75   -->
     76 
     77   <div></div>
     78 
     79  </body>
     80 </html>