tor-browser

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

at-supports-048-ref.html (578B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 	<title>CSS Test (Conditional Rules): Mixing @supports and CSS nesting</title>
      5 	<link rel="author" title="Matthieu Dubet" href="m_dubet@apple.com">
      6 	<link rel="help" href="http://www.w3.org/TR/css3-conditional/#at-supports">
      7 	<style>
      8 		div {
      9 			background:red;
     10 			height:100px;
     11 			width:100px;
     12 			margin: 10px;
     13 			border: solid 1px black;
     14 			background-color: green;
     15 		}
     16 </style>
     17 </head>
     18 
     19 <p>Test passes if there are only green rectangles.
     20 <div class="test-1"></div>
     21 <div class="test-2"></div>
     22 <div class="test-3"></div>
     23 </html>