mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
36 lines
631 B
HTML
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>
|