Revision fced01876b48e034b64d9dad6de14d1bdeba3cc0 authored by Daniel Cheng on 12 April 2018, 12:08:45 UTC, committed by Chromium WPT Sync on 12 April 2018, 12:08:45 UTC
Change-Id: I1e66f2cdc50be889b697b54401be6352607fa649
Reviewed-on: https://chromium-review.googlesource.com/1006528
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Reviewed-by: Yuki Shiino <yukishiino@chromium.org>
Cr-Commit-Position: refs/heads/master@{#550152}
1 parent 19a42b9
Raw File
2d-rotate-ref.html
<!DOCTYPE html>
<html>
	<head>
	    <title>CSS Test: CSS Transform using 2d rotate()</title>
	    <link rel="author" title="Rick Hurst" href="http://mrkn.co/axegs">
		<link rel="mismatch" href="2d-rotate-notref.html">
	    <meta name="flags" content="svg">
	    <style type="text/css">
			svg{
				position: absolute;
				top: 220px;
				left: 60px;
			}
		</style>
	</head>
	<body>
		<p>You should only see one block with color green, and you should not see any red</p>
		<section>
			<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="300" height="200">
				<style type="text/css">
				rect{
					stroke-width: 10;
					stroke: green;
					fill: none;
		   	 	}
			    </style>
				<rect height="110" width="110" y="-38" x="120" transform="rotate(30)"/>
			</svg>
		</section>
	</body>
</html>
back to top