Move block_formatting_context_overflow_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-14 10:21:25 +02:00
parent c62a14b37d
commit 87a22d6368
4 changed files with 25 additions and 1 deletions

View file

@ -507,6 +507,18 @@
"url": "/_mozilla/css/block_formatting_context_max_width_a.html"
}
],
"css/block_formatting_context_overflow_a.html": [
{
"path": "css/block_formatting_context_overflow_a.html",
"references": [
[
"/_mozilla/css/block_formatting_context_overflow_ref.html",
"=="
]
],
"url": "/_mozilla/css/block_formatting_context_overflow_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -1796,6 +1808,18 @@
"url": "/_mozilla/css/block_formatting_context_max_width_a.html"
}
],
"css/block_formatting_context_overflow_a.html": [
{
"path": "css/block_formatting_context_overflow_a.html",
"references": [
[
"/_mozilla/css/block_formatting_context_overflow_ref.html",
"=="
]
],
"url": "/_mozilla/css/block_formatting_context_overflow_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<link rel=match href=block_formatting_context_overflow_ref.html>
<style>
section {
display: block;
width: 0;
}
nav {
display: block;
}
aside {
display: block;
overflow: hidden;
}
main {
width: 500px;
}
</style>
<section><main><nav><aside>Hello</aside>world!</nav></main></section>

View file

@ -0,0 +1,3 @@
<!DOCTYPE html>
<div>Hello</div><div>world!</div>