perspective-reftest.html (718B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Reference File</title> 5 <link rel="author" title="Andres Ugarte" href="mailto:anduga@gmail.com"> 6 <style type="text/css"> 7 .container { 8 position: absolute; 9 width: 150px; 10 height: 150px; 11 top: 100px; 12 left: 100px; 13 } 14 .greenSquare { 15 position: absolute; 16 top: 0px; 17 left: 0px; 18 width: 150px; 19 height: 150px; 20 background: green; 21 } 22 </style> 23 </head> 24 <body> 25 <p>The test passes if there is a green square and no red.</p> 26 <div class="container"> 27 <div class="greenSquare"></div> 28 </div> 29 </body> 30 </html>