summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-002.html
blob: cb02361b35449819e70242aa73d1b956d0c96b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
	<head>
		<title>CSS Test: Position an element with 'polar-origin' and 'polar-anchor'</title>
		<link rel="author" title="Jihye Hong" href="mailto:jh.hong@lge.com" />
		<link rel="help" href="https://www.w3.org/TR/motion-1/#motion-paths-overview/">
		<meta name="assert" content="Test checks that the position of an element specified with 'polar-origin' and 'polar-anchor'.">
		<style type="text/css">
		    .container {
		      width: 200px;
		      height: 200px;
		      border: medium solid black;
		    }
		    .item {
		      position: absolute;
		      polar-origin: center;
		      polar-anchor: left;
		      polar-distance: 0px;
			  polar-angle: 90deg;
		      width: 50px;
		      height: 50px;
		      background-color: red;
		    }
		  </style>
	</head>
	<body>
		<p>Test passes if the center point of the red box's left edge is positioned at the center of the containing block.<br>
		The element is positioned using polar coordinates.<br>
		The origin of coordinates is the center point of the containing block.<br>
		And the anchor point of the element is the center point of its left edge.</p>
		<div class="container">
			<div class="item"></div>
		</div>
	</body>
</html>