Move border_collapse_missing_cell_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-16 12:55:34 +02:00
parent e619617239
commit c80d061e20
4 changed files with 25 additions and 1 deletions

View file

@ -647,6 +647,18 @@
"url": "/_mozilla/css/border_code_tag.html"
}
],
"css/border_collapse_missing_cell_a.html": [
{
"path": "css/border_collapse_missing_cell_a.html",
"references": [
[
"/_mozilla/css/border_collapse_missing_cell_ref.html",
"=="
]
],
"url": "/_mozilla/css/border_collapse_missing_cell_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -2820,6 +2832,18 @@
"url": "/_mozilla/css/border_code_tag.html"
}
],
"css/border_collapse_missing_cell_a.html": [
{
"path": "css/border_collapse_missing_cell_a.html",
"references": [
[
"/_mozilla/css/border_collapse_missing_cell_ref.html",
"=="
]
],
"url": "/_mozilla/css/border_collapse_missing_cell_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that missing cells don't cause a crash in border collapse code. -->
<link rel=match href=border_collapse_missing_cell_ref.html>
<style>
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<td>United States</td>
<td>40404</td>
<td>(any)</td>
</tr>
<tr>
<td>3424486444</td>
<td>Vodafone</td>
</tr>
</table>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that missing cells don't cause a crash in border collapse code. -->
<style>
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<td>United States</td>
<td>40404</td>
<td>(any)</td>
</tr>
<tr>
<td>3424486444</td>
<td>Vodafone</td>
</tr>
</table>
</body>
</html>