Move table_percentage_capping_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 22:20:03 -04:00
parent 63bb425e7d
commit 48d345447e
4 changed files with 25 additions and 1 deletions

View file

@ -615,6 +615,18 @@
"url": "/_mozilla/css/table_expansion_to_fit_a.html"
}
],
"css/table_percentage_capping_a.html": [
{
"path": "css/table_percentage_capping_a.html",
"references": [
[
"/_mozilla/css/table_percentage_capping_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_percentage_capping_a.html"
}
],
"css/table_percentage_width_a.html": [
{
"path": "css/table_percentage_width_a.html",
@ -2444,6 +2456,18 @@
"url": "/_mozilla/css/table_expansion_to_fit_a.html"
}
],
"css/table_percentage_capping_a.html": [
{
"path": "css/table_percentage_capping_a.html",
"references": [
[
"/_mozilla/css/table_percentage_capping_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_percentage_capping_a.html"
}
],
"css/table_percentage_width_a.html": [
{
"path": "css/table_percentage_width_a.html",

View file

@ -0,0 +1,13 @@
<!doctype html>
<link rel='match' href='table_percentage_capping_ref.html'>
<title>Test for capping percentages</title>
<style>
div { width:300px; background:yellow; height:50px; }
table { width:150%; }
td { background:blue; }
</style>
<div>
<table cellspacing="0" cellpadding="0" border="0">
<tr><td>parent div float=left</td></tr>
</table>
</div>

View file

@ -0,0 +1,12 @@
<!doctype html>
<title>Test for capping percentages</title>
<style>
div { width:300px; background:yellow; height:50px; }
table { width:450px; }
td { background:blue; }
</style>
<div>
<table cellspacing="0" cellpadding="0" border="0">
<tr><td>parent div float=left</td></tr>
</table>
</div>