bzbarsky%mit.edu 4ece786399 Fixing the testcase to actually be a testcase, not a diff.... Not part of build
git-svn-id: svn://10.0.0.236/trunk@172329 18797224-902f-48f8-a5cc-f745e15eee43
2005-04-16 03:02:07 +00:00

36 lines
631 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<style type="text/css">
.green {
width: 100px;
height: 100px;
background-color: green;
}
.red {
width: 100px;
height: 100px;
margin-top: 100px;
margin-left: 100px;
background-color: red;
}
.clip {
clip: rect(0px 100px 100px 0px);
}
.positioned {
position: fixed;
}
</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 is applying to all
descendants.
<div class="clip green positioned">
<div class="red"></div>
<div class="red positioned"></div>
</div>