Bug 363728 - overflow: auto overdraws an absolute-positioned DIV; reftests; r+sr=dbaron

CLOSED TREE (test only)
This commit is contained in:
Daniel.S 2009-02-14 23:02:27 +01:00
Родитель 26e202ac7f
Коммит 6abc9c5bca
5 изменённых файлов: 107 добавлений и 0 удалений

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

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#a {
height: 4em;
background-color: green;
overflow: hidden;
}
#a div{
position: absolute;
top: 1em; left: 1em;
background-color: lime;
height: 7em; width: 7em;
}
</style>
</head>
<body>
<div id="a">
<div></div>
</div>
<textarea></textarea>
</body>
</html>

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

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#a {
height: 4em;
background-color: green;
overflow: hidden;
}
#a div{
position: absolute;
top: 1em; left: 1em;
background-color: lime;
height: 7em; width: 7em;
}
</style>
</head>
<body>
<div id="a">
<div></div>
</div>
<textarea> FAIL</textarea>
</body>
</html>

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

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#a {
height: 4em;
background-color: green;
overflow: hidden;
}
#a div{
position: absolute;
top: 1em; left: 1em;
background-color: lime;
height: 7em; width: 7em;
}
#b {
height: 4em;
background-color: blue;
}
</style>
</head>
<body>
<div id="a">
<div></div>
</div>
<div id="b"></div>
</body>
</html>

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

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#a {
height: 4em;
background-color: green;
overflow: hidden;
}
#a div{
position: absolute;
top: 1em; left: 1em;
background-color: lime;
height: 7em; width: 7em;
}
#b {
height: 4em;
background-color: blue;
overflow: hidden;
}
</style>
</head>
<body>
<div id="a">
<div></div>
</div>
<div id="b"></div>
</body>
</html>

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

@ -464,6 +464,8 @@ fails-if(MOZ_WIDGET_TOOLKIT=="cocoa") == 356774-1.html 356774-1-ref.html # proba
== 363637-1.html 363637-1-ref.html
== 363706-1.html 363706-1-ref.html
!= 363706-1.html about:blank
== 363728-1.html 363728-1-ref.html
== 363728-2.html 363728-2-ref.html
== 363858-1.html 363858-1-ref.html
== 363858-2.html 363858-2-ref.html
== 363858-3.html 363858-3-ref.html