Bug 1177690 - part 3 - Reftests for bevelled corners on collapsed table border. r=dholbert

This commit is contained in:
Jonathan Kew 2015-07-08 09:07:52 +01:00
parent 79183edc5e
commit 311e472d52
7 changed files with 181 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
table {
margin: 10px;
border-spacing: 0;
border-collapse: collapse;
}
td {
border-top: 10px solid rgba(0,0,255,0.3);
border-right: 20px solid rgba(255,0,0,0.3);
border-bottom: 30px solid rgba(0,255,0,0.3);
border-left: 40px solid rgba(255,0,255,0.3);
width: 50px;
height: 50px;
padding: 0;
}
</style>
</head>
<body>
<div>
<table>
<tr><td> </td></tr>
</table>
</div>

View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
table {
margin: 10px;
border-spacing: 0;
border-collapse: collapse;
direction: rtl;
}
td {
border-top: 10px solid rgba(0,0,255,0.3);
border-right: 20px solid rgba(255,0,0,0.3);
border-bottom: 30px solid rgba(0,255,0,0.3);
border-left: 40px solid rgba(255,0,255,0.3);
width: 50px;
height: 50px;
padding: 0;
}
</style>
</head>
<body>
<div>
<table>
<tr><td> </td></tr>
</table>
</div>

View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
table {
margin: 10px;
border-spacing: 0;
border-collapse: collapse;
writing-mode: vertical-lr;
}
td {
border-top: 10px solid rgba(0,0,255,0.3);
border-right: 20px solid rgba(255,0,0,0.3);
border-bottom: 30px solid rgba(0,255,0,0.3);
border-left: 40px solid rgba(255,0,255,0.3);
width: 50px;
height: 50px;
padding: 0;
}
</style>
</head>
<body>
<div>
<table>
<tr><td> </td></tr>
</table>
</div>

View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
table {
margin: 10px;
border-spacing: 0;
border-collapse: collapse;
writing-mode: vertical-rl;
}
td {
border-top: 10px solid rgba(0,0,255,0.3);
border-right: 20px solid rgba(255,0,0,0.3);
border-bottom: 30px solid rgba(0,255,0,0.3);
border-left: 40px solid rgba(255,0,255,0.3);
width: 50px;
height: 50px;
padding: 0;
}
</style>
</head>
<body>
<div>
<table>
<tr><td> </td></tr>
</table>
</div>

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
table {
margin: 10px;
border-spacing: 0;
border-collapse: collapse;
writing-mode: vertical-lr;
direction: rtl;
}
td {
border-top: 10px solid rgba(0,0,255,0.3);
border-right: 20px solid rgba(255,0,0,0.3);
border-bottom: 30px solid rgba(0,255,0,0.3);
border-left: 40px solid rgba(255,0,255,0.3);
width: 50px;
height: 50px;
padding: 0;
}
</style>
</head>
<body>
<div>
<table>
<tr><td> </td></tr>
</table>
</div>

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
table {
margin: 10px;
border-spacing: 0;
border-collapse: collapse;
writing-mode: vertical-rl;
direction: rtl;
}
td {
border-top: 10px solid rgba(0,0,255,0.3);
border-right: 20px solid rgba(255,0,0,0.3);
border-bottom: 30px solid rgba(0,255,0,0.3);
border-left: 40px solid rgba(255,0,255,0.3);
width: 50px;
height: 50px;
padding: 0;
}
</style>
</head>
<body>
<div>
<table>
<tr><td> </td></tr>
</table>
</div>

View File

@ -82,3 +82,9 @@ fuzzy-if(Android,255,38) == table-caption-top-1.html table-caption-top-1-ref.htm
fuzzy-if(Android,255,38) == table-caption-bottom-1.html table-caption-bottom-1-ref.html
== table-caption-left-1.html table-caption-left-1-ref.html
== table-caption-right-1.html table-caption-right-1-ref.html
== border-collapse-bevels-1a.html border-collapse-bevels-1-ref.html
fuzzy-if(cocoaWidget,23,162) == border-collapse-bevels-1b.html border-collapse-bevels-1-ref.html
fuzzy-if(cocoaWidget,23,162) == border-collapse-bevels-1c.html border-collapse-bevels-1-ref.html
fails == border-collapse-bevels-1d.html border-collapse-bevels-1-ref.html # bug 1177690, bug 1180528
fails == border-collapse-bevels-1e.html border-collapse-bevels-1-ref.html # bug 1177690, bug 1180528