layout/reftests/w3c-css/submitted/values3/calc-margin-block-1-ref.html

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     1 <!DOCTYPE HTML>
     2 <html>
     3 <head>
     4   <title>CSS Reference: Test of margin-*: calc()</title>
     5   <link rel="author" title="L. David Baron" href="http://dbaron.org/">
     6   <meta name="flags" content="">
     7 <style type="text/css">
     9 div { border: medium solid green; width: 500px }
    10 p { background: yellow }
    12 </style>
    13 </head>
    14 <body>
    16 <div><p style="margin: 15px 0 0 0">paragraph with margin</p></div>
    17 <div><p style="margin: 0 15px 0 0">paragraph with margin</p></div>
    18 <div><p style="margin: 0 0 15px 0">paragraph with margin</p></div>
    19 <div><p style="margin: 0 0 0 15px">paragraph with margin</p></div>
    20 <div><p style="margin: 25px 25px 25px 25px">paragraph with margin</p></div>
    21 </body>
    22 </html>

mercurial