Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326

This commit is contained in:
Josh Matthews 2017-10-12 09:25:50 -04:00
parent 462c272380
commit 1f531f66ea
5377 changed files with 174916 additions and 84369 deletions

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<title>Table direction</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 20px;
height: 20px;
}
td.special {
border-left: 5px solid green;
border-right: 5px solid blue;
}
</style>
Normal table:
<table>
<tr>
<td></td>
<td class="special"></td>
</tr>
</table>
<hr>
RTL table:
<table>
<tr>
<td class="special"></td>
<td></td>
</tr>
</table>

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<link rel="match" href="table-direction-ref.html">
<title>Table direction</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 20px;
height: 20px;
}
td.special {
border-left: 5px solid green;
border-right: 5px solid blue;
}
</style>
Normal table:
<table>
<tr>
<td></td>
<td class="special"></td>
</tr>
</table>
<hr>
RTL table:
<table style="direction: rtl">
<tr>
<td></td>
<td class="special"></td>
</tr>
</table>

View file

@ -0,0 +1,45 @@
<!DOCTYPE html>
<title>Table row direction</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 20px;
height: 20px;
}
td.special {
border-left: 5px solid green;
border-right: 5px solid blue;
}
</style>
Normal table with LTR and RTL rows:
<table>
<tr>
<td></td>
<td class="special"></td>
</tr>
<tr>
<td></td>
<td class="special"></td>
</tr>
</table>
<hr>
RTL table with LTR and RTL rows:
<table>
<tr>
<td class="special"></td>
<td></td>
</tr>
<tr>
<td class="special"></td>
<td></td>
</tr>
</table>

View file

@ -0,0 +1,46 @@
<!DOCTYPE html>
<link rel="match" href="table-row-direction-ref.html">
<title>Table row direction</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 20px;
height: 20px;
}
td.special {
border-left: 5px solid green;
border-right: 5px solid blue;
}
</style>
Normal table with LTR and RTL rows:
<table>
<tr style="direction: ltr">
<td></td>
<td class="special"></td>
</tr>
<tr style="direction: rtl">
<td></td>
<td class="special"></td>
</tr>
</table>
<hr>
RTL table with LTR and RTL rows:
<table style="direction: rtl">
<tr style="direction: ltr">
<td></td>
<td class="special"></td>
</tr>
<tr style="direction: rtl">
<td></td>
<td class="special"></td>
</tr>
</table>

View file

@ -0,0 +1,45 @@
<!DOCTYPE html>
<title>Table row-group direction</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 20px;
height: 20px;
}
td.special {
border-left: 5px solid green;
border-right: 5px solid blue;
}
</style>
Normal table with LTR and RTL row groups:
<table>
<tr>
<td></td>
<td class="special"></td>
</tr>
<tr>
<td></td>
<td class="special"></td>
</tr>
</table>
<hr>
RTL table with LTR and RTL row groups:
<table>
<tr>
<td class="special"></td>
<td></td>
</tr>
<tr>
<td class="special"></td>
<td></td>
</tr>
</table>

View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<link rel="match" href="table-row-group-direction-ref.html">
<title>Table row-group direction</title>
<style>
table {
border-collapse: collapse;
}
td {
border: 2px solid black;
width: 20px;
height: 20px;
}
td.special {
border-left: 5px solid green;
border-right: 5px solid blue;
}
</style>
Normal table with LTR and RTL row groups:
<table>
<tbody style="direction: ltr">
<tr>
<td></td>
<td class="special"></td>
</tr>
</tbody>
<tbody style="direction: rtl">
<tr>
<td></td>
<td class="special"></td>
</tr>
</tbody>
</table>
<hr>
RTL table with LTR and RTL row groups:
<table style="direction: rtl">
<tbody style="direction: ltr">
<tr>
<td></td>
<td class="special"></td>
</tr>
</tbody>
<tbody style="direction: rtl">
<tr>
<td></td>
<td class="special"></td>
</tr>
</tbody>
</table>