mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 14:15:30 +00:00
7a8ca2a01e
The added test only tests the position of ruby text and ruby text container. The position of text inside is not correct yet, which will be fixed in bug 1141931. --HG-- extra : source : 16ff39aeb8e30223d664355963f25b8bbec17102
17 lines
372 B
HTML
17 lines
372 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Bug 1141928 - Position of ruby annotation in RTL text</title>
|
|
<style>
|
|
body { color: transparent; }
|
|
rb { background: green; }
|
|
rtc { background: red; }
|
|
rt { background: cyan; }
|
|
</style>
|
|
</head>
|
|
<body style="text-align: right">
|
|
<ruby><rb>base<rtc><rt>text</ruby>
|
|
</body>
|
|
</html>
|