blob: fea5596c7b4ef0cffba371196decaa4d7c1abd07 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>This tests that outline is clipped properly.</title>
<style>
#container {
width: 100px;
height: 100px;
border: 1px solid green;
overflow: hidden;
-webkit-transform: translateX(0);
}
#outline {
width: 100px;
height: 100px;
outline-offset: 2px;
outline: 1px solid red;
}
</style>
</head>
<body>
<div id=container><div id=outline></div></div>
</body>
</html>