Add reftest, update test expectations

This commit is contained in:
Manish Goregaokar 2018-02-28 14:18:25 -08:00
parent cec37a492a
commit ffe68e8010
4 changed files with 62 additions and 0 deletions

View file

@ -5837,6 +5837,18 @@
{}
]
],
"css/table_rowspan_notequal_a.html": [
[
"/_mozilla/css/table_rowspan_notequal_a.html",
[
[
"/_mozilla/css/table_rowspan_notequal_ref.html",
"!="
]
],
{}
]
],
"css/table_rowspan_rowgroup_a.html": [
[
"/_mozilla/css/table_rowspan_rowgroup_a.html",
@ -9756,6 +9768,11 @@
{}
]
],
"css/table_rowspan_notequal_ref.html": [
[
{}
]
],
"css/table_rowspan_rowgroup_ref.html": [
[
{}
@ -63932,6 +63949,14 @@
"e045db1f738850e516079b66f915ba314b54ed99",
"support"
],
"css/table_rowspan_notequal_a.html": [
"ec7ab6318a498f6b88369f097af53a0626c6fb1d",
"reftest"
],
"css/table_rowspan_notequal_ref.html": [
"2a07facbd9f417264b46f6419ab00593051dae56",
"support"
],
"css/table_rowspan_rowgroup_a.html": [
"aadc4cdd09585330446dd231452c04810833f586",
"reftest"

View file

@ -0,0 +1,2 @@
[table_rowspan_rowgroup_a.html]
expected: FAIL

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<link rel="mismatch" href="table_rowspan_notequal_ref.html">
<style>
td {
width: 100px;
border: 1px solid purple;
}
</style>
<body>
<table style="border: 1px solid purple">
<tr><td rowspan="2">&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<style>
td {
width: 100px;
border: 1px solid purple;
}
</style>
<body>
<table style="border: 1px solid purple">
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
</table>
</body>
</html>