blob: 2cc789f8ec01905949b6c06d28fc01417c478844 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<style>
.green {
width: 100px;
height: 100px;
background-color: green;
border: 10px solid red;
}
.clip {
clip: rect(10px 110px 110px 10px);
}
.positioned {
position: absolute;
}
</style>
<body>
You should see a 100x100 green square below. If you see any red, the test
has failed. This test is checking to make sure clip applies to the element
itself and starts from the border edge.
<div class="clip green positioned">
</div>