layout/reftests/w3c-css/submitted/values3/calc-padding-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 padding-*: 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 body { width: 500px }
    10 div { border: medium solid green }
    11 p { background: yellow; margin: 0 }
    13 </style>
    14 </head>
    15 <body>
    17 <div style="padding: 15px 0 0 0"><p>paragraph with padding</p></div>
    18 <div style="padding: 0 15px 0 0"><p>paragraph with padding</p></div>
    19 <div style="padding: 0 0 15px 0"><p>paragraph with padding</p></div>
    20 <div style="padding: 0 0 0 15px"><p>paragraph with padding</p></div>
    21 <div style="padding: 25px 25px 25px 25px"><p>paragraph with padding</p></div>
    22 </body>
    23 </html>

mercurial