tor-browser

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

background-attachment-local-scrolling.htm (1785B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3    <head>
      4        <title>CSS Test: Scrolling when 'background-attachment: local'</title>
      5        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6        <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-attachment" />
      7        <meta name="assert" content="If 'background-attachment: local' the background scrolls along with the element's contents (the UA may treat 'background-clip: border-box' as the same as 'background-clip: padding-box')." />
      8        <style type="text/css">
      9            div
     10            {
     11                width: 2in;
     12                height: 2in;
     13                border: 50px double black;
     14                background-image: url("../support/cat.png");
     15                background-attachment: local;
     16                overflow: scroll;
     17            }
     18        </style>
     19    </head>
     20    <body>
     21        <p>Test passes if the images of all the cats scroll when the box is scrolled. (Presence of cats behind the double border is UA dependent). </p>
     22        <div>Filler Text Filler Text
     23        Filler Text Filler Text Filler Text
     24        Filler Text Filler Text Filler Text
     25        Filler Text Filler Text Filler Text
     26        Filler Text Filler Text Filler Text
     27        Filler Text Filler Text Filler Text
     28        Filler Text Filler Text Filler Text
     29        Filler Text Filler Text Filler Text
     30        Filler Text Filler Text Filler Text
     31        Filler Text Filler Text Filler Text
     32        Filler Text Filler Text Filler Text
     33        Filler Text Filler Text Filler Text
     34        Filler Text Filler Text Filler Text
     35        Filler Text Filler Text </div>
     36    </body>
     37 </html>