https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8c228b827f2f7d2d317a13f48ff6022b0da5b10a authored by Luke Bjerring on 20 July 2018, 17:32:08 UTC
Try to automate u2f authentication, with vendor-specific implementations of what 'authenticate_u2f' would be.
Tip revision: 8c228b8
polar-origin-and-anchor-004.html
<!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/css-round-display-1/#positioning-content">
		<meta name="flags" content="">
		<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: bottom;
		      polar-anchor: left top;
		      polar-distance: 0px;
			  polar-angle: 90deg;
		      width: 50px;
		      height: 50px;
		      background-color: red;
		    }
		  </style>
	</head>
	<body>
		<p>Test passes if the upper left corner of the red box is positioned at the center point of the containing block's bottom edge.<br>
		The element is positioned using polar coordinates.<br>
		The origin of coordinates is the center point of the containing block's bottom edge.<br>
		And the anchor point of the element is at its upper left corner.</p>
		<div class="container">
			<div class="item"></div>
		</div>
	</body>
</html>
back to top