1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/values3/calc-offsets-relative-left-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 + <title>CSS Reference: Test for left:calc() on relatively positioned elements</title> 1.8 + <link rel="author" title="L. David Baron" href="http://dbaron.org/"> 1.9 + <meta name="flags" content=""> 1.10 +<style type="text/css"> 1.11 +body { margin: 0 100px; width: 100px } 1.12 +div[style] { background: blue; position: relative; height: 3px; } 1.13 +</style> 1.14 +</head> 1.15 +<body> 1.16 + 1.17 +<div style="left: 50px"></div> 1.18 +<div style="left: -50px"></div> 1.19 +<div style="left: 75px"></div> 1.20 +<div style="left: -45px"></div> 1.21 +<div style="left: 40px"></div> 1.22 +<div style="left: -30px"></div> 1.23 +</body> 1.24 +</html>