tor-browser

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

mq-calc-001.html (697B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 	<title>Test: support for calc in Media Queries</title>
      5 	<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/">
      6 	<link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
      7 	<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      8 	<meta name="assert" content="calc can be used in Media Queries">
      9 	<style>
     10 		div {
     11 			width: 100px;
     12 			height: 100px;
     13 			background-color: red;
     14 		}
     15 		@media (min-width: calc(1px - 1px)){
     16 			div { background-color: green; }
     17 		}
     18 </style>
     19 </head>
     20 <body>
     21 	<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     22 	<div></div>
     23 </body>
     24 </html>