mirror of
https://github.com/servo/servo.git
synced 2025-09-30 16:49:16 +01:00
Move table_percentage_capping_a.html to wpt reftests.
This commit is contained in:
parent
63bb425e7d
commit
48d345447e
4 changed files with 25 additions and 1 deletions
|
@ -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",
|
||||
|
|
13
tests/wpt/mozilla/tests/css/table_percentage_capping_a.html
Normal file
13
tests/wpt/mozilla/tests/css/table_percentage_capping_a.html
Normal 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>
|
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue