mirror of
https://github.com/servo/servo.git
synced 2025-09-13 00:18:22 +01:00
Move table_colspan_simple_a.html to wpt reftests.
This commit is contained in:
parent
4891c45c25
commit
9e2bfb961c
4 changed files with 25 additions and 1 deletions
|
@ -603,6 +603,18 @@
|
|||
"url": "/_mozilla/css/stacking_context_rtl.html"
|
||||
}
|
||||
],
|
||||
"css/table_colspan_simple_a.html": [
|
||||
{
|
||||
"path": "css/table_colspan_simple_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_colspan_simple_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_colspan_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_containing_block_a.html": [
|
||||
{
|
||||
"path": "css/table_containing_block_a.html",
|
||||
|
@ -2504,6 +2516,18 @@
|
|||
"url": "/_mozilla/css/stacking_context_rtl.html"
|
||||
}
|
||||
],
|
||||
"css/table_colspan_simple_a.html": [
|
||||
{
|
||||
"path": "css/table_colspan_simple_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/table_colspan_simple_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/table_colspan_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/table_containing_block_a.html": [
|
||||
{
|
||||
"path": "css/table_containing_block_a.html",
|
||||
|
|
23
tests/wpt/mozilla/tests/css/table_colspan_simple_a.html
Normal file
23
tests/wpt/mozilla/tests/css/table_colspan_simple_a.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='match' href='table_colspan_simple_ref.html'>
|
||||
<style>
|
||||
td[colspan="2"] {
|
||||
background-color: blue;
|
||||
color: white;
|
||||
}
|
||||
td[colspan="3"] {
|
||||
background-color: green;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border=0 cellspacing=0 cellpadding=0>
|
||||
<tr><td width=100> </td><td width=100> </td><td width=100> </td></tr>
|
||||
<tr><td colspan=2> </td><td> </td></tr>
|
||||
<tr><td> <td colspan=2> </td></tr>
|
||||
<tr><td colspan=3> </td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
22
tests/wpt/mozilla/tests/css/table_colspan_simple_ref.html
Normal file
22
tests/wpt/mozilla/tests/css/table_colspan_simple_ref.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<style>
|
||||
td.two {
|
||||
background-color: blue;
|
||||
color: white;
|
||||
}
|
||||
td.three {
|
||||
background-color: green;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border=0 cellspacing=0 cellpadding=0>
|
||||
<tr><td width=100> </td><td width=100> </td><td width=100> </td></tr>
|
||||
<tr><td class=two> </td><td class=two></td><td> </td></tr>
|
||||
<tr><td> <td class=two> </td><td class=two></td></tr>
|
||||
<tr><td class=three> </td><td class=three></td><td class=three></td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue