mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Auto merge of #6081 - mbrubeck:table-wrapper-rtl, r=pcwalton
Fixes #6006. r? @pcwalton <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6081) <!-- Reviewable:end -->
This commit is contained in:
commit
3934831da3
4 changed files with 52 additions and 6 deletions
|
@ -269,6 +269,7 @@ experimental != overconstrained_block.html overconstrained_block_ref.html
|
|||
experimental == rtl_body.html rtl_body_ref.html
|
||||
experimental == rtl_margin_a.html rtl_margin_ref.html
|
||||
experimental == rtl_simple.html rtl_simple_ref.html
|
||||
experimental == rtl_table_a.html rtl_table_ref.html
|
||||
== servo_center_a.html servo_center_ref.html
|
||||
== setattribute_id_restyle_a.html setattribute_id_restyle_b.html
|
||||
== stacking_context_overflow_a.html stacking_context_overflow_ref.html
|
||||
|
|
19
tests/ref/rtl_table_a.html
Normal file
19
tests/ref/rtl_table_a.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>RTL Table test</title>
|
||||
<style>
|
||||
table { direction: rtl; }
|
||||
td {
|
||||
background: orange;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table><tr><td></td></tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
18
tests/ref/rtl_table_ref.html
Normal file
18
tests/ref/rtl_table_ref.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>RTL Table reference</title>
|
||||
<style>
|
||||
td {
|
||||
background: orange;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table><tr><td></td></tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue