mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
e8b6991cce
These series of tests attempt to ensure conformance to the CSS 2.1 sections 10.3.7 and 10.6.4.
20 lines
496 B
HTML
20 lines
496 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src="animate.js" type="text/javascript"></script>
|
|
<script src="../handleprop.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<div id="parent">
|
|
<div id="child" style="top: 100px;">
|
|
<div class="floatTop"></div>
|
|
<div class="floatTop"></div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
animate(100, 200);
|
|
</script>
|
|
</body>
|
|
</html>
|