mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326
This commit is contained in:
parent
462c272380
commit
1f531f66ea
5377 changed files with 174916 additions and 84369 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue