mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14d4122730
These series of tests attempt to ensure conformance to the CSS 2.1 sections 10.3.7 and 10.6.4.
24 lines
475 B
HTML
24 lines
475 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src="../handleprop.js" type="text/javascript"></script>
|
|
<style>
|
|
#child {
|
|
left: 300px;
|
|
top: 200px;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="parent">
|
|
<div id="child">
|
|
<div class="floatLeft"></div>
|
|
<div class="floatLeft"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|