Generate RTL version of tests

Summary: Generate RTL versions of css-layout tests

Reviewed By: lucasr

Differential Revision: D3863081

fbshipit-source-id: df4debb3c1e371425d7c297f8d013b8042ad1e0e
This commit is contained in:
Emil Sjolander
2016-09-14 08:51:07 -07:00
committed by Facebook Github Bot 0
parent 8fcb265830
commit 21a05417cd
15 changed files with 1251 additions and 126 deletions

View File

@@ -27,18 +27,40 @@
flex-shrink: 0;
}
#container > * {
body > * {
position: absolute;
}
#ltr-container > * {
position: absolute;
direction: ltr;
}
#rtl-container > * {
position: absolute;
direction: rtl;
}
</style>
</head>
<body>
<div id='container'>
<div id='ltr-container'>
%s
<div id='default'></div>
</div>
<div id='rtl-container'>
%s
<div id='default'></div>
</div>
<div>
%s
</div>
</body>
</html>