https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 687aa0845460e118b6277fe0ce47915978a2b1ff authored by Manuel Rego Casasnovas on 02 April 2018, 06:19:45 UTC
[css-grid] Fix resolution of percentage paddings and margins of grid items
Tip revision: 687aa08
attr-px-valid.html
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>
		CSS Values and Units Test:
		Attribute references (pixels)
	</title>
	<meta name="assert" content="
		Attribute references for pixel values are replaced correctly at computed time.
	" />

	<link
		rel="author"
		title="François REMY"
		href="mailto:fremycompany.developer@yahoo.fr"
	/ >

	<link rel="help" href="http://www.w3.org/TR/css3-values/#attr-notation"/>

	<link
		rel="match"
		href="reference/200-200-green.html"
	/>

	<style type="text/css">

			html, body { margin: 0px; padding: 0px; }

			html { background: white; overflow: hidden; }
			#outer { position: relative; background: green; }

			#outer { width: attr(data-test px); height: 200px; }

	</style>

</head>
<body>

	<div id="outer" data-test="200"></div>

</body>
</html>
back to top