Bug 389623 - box with background-attachment:fixed goes on top of floats; reftest; r+sr=dbaron

This commit is contained in:
Daniel.S 2009-01-02 07:21:30 +01:00
Родитель 45afc6261a
Коммит e36d812b18
3 изменённых файлов: 51 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.float, .float + div {
float: left;
height: 200px;
width: 100px;
background: #ccc;
}
.float + div{
float:right;
}
#bg {
background: #999;
height: 100px;
}
</style>
</head>
<body>
<div class="float"></div>
<div></div>
<div id="bg"></div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.float, .float + div {
float: left;
height: 200px;
width: 100px;
background: #ccc;
}
.float + div{
float:right;
}
#bg {
background: url() #999 fixed;
height: 100px;
}
</style>
</head>
<body>
<div class="float"></div>
<div></div>
<div id="bg"></div>
</body>
</html>

Просмотреть файл

@ -630,6 +630,7 @@ fails == 386310-1d.html 386310-1-ref.html
== 388367-1.html about:blank
== 388980-1.html 388980-1-ref.html
== 389468-1.html 389468-1-ref.html
== 389623-1.html 389623-1-ref.html
== 389636-1.html about:blank # assertion test
== 389924-1a.html 389924-1-ref.html
== 389924-1b.html 389924-1-ref.html