Move stacking_context_overflow_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 23:13:17 -04:00
parent 541baa5168
commit d27c262f00
4 changed files with 25 additions and 1 deletions

View file

@ -591,6 +591,18 @@
"url": "/_mozilla/css/setpropertypriority.html"
}
],
"css/stacking_context_overflow_a.html": [
{
"path": "css/stacking_context_overflow_a.html",
"references": [
[
"/_mozilla/css/stacking_context_overflow_ref.html",
"=="
]
],
"url": "/_mozilla/css/stacking_context_overflow_a.html"
}
],
"css/stacking_context_overflow_relative_outline_a.html": [
{
"path": "css/stacking_context_overflow_relative_outline_a.html",
@ -2612,6 +2624,18 @@
"url": "/_mozilla/css/setpropertypriority.html"
}
],
"css/stacking_context_overflow_a.html": [
{
"path": "css/stacking_context_overflow_a.html",
"references": [
[
"/_mozilla/css/stacking_context_overflow_ref.html",
"=="
]
],
"url": "/_mozilla/css/stacking_context_overflow_a.html"
}
],
"css/stacking_context_overflow_relative_outline_a.html": [
{
"path": "css/stacking_context_overflow_relative_outline_a.html",

View file

@ -0,0 +1,23 @@
<html>
<head>
<link rel='match' href='stacking_context_overflow_ref.html'>
<!-- Tests that stacking contexts display overflow. -->
<style>
body {
margin: 0;
}
section {
position: absolute;
z-index: 1;
width: 72px;
height: 72px;
border: solid black 2px;
font: 24px Arial;
}
</style>
</head>
<body>
<section>CSS IS AWESOME</section>
</body>
</html>

View file

@ -0,0 +1,21 @@
<html>
<head>
<!-- Tests that stacking contexts display overflow. -->
<style>
body {
margin: 0;
}
section {
width: 72px;
height: 72px;
border: solid black 2px;
font: 24px Arial;
}
</style>
</head>
<body>
<section>CSS IS AWESOME</section>
</body>
</html>