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