mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c54299c818
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.
17 lines
356 B
HTML
17 lines
356 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 dir="rtl">
|
|
<ruby><rb>base<rtc><rt>text</ruby>
|
|
</body>
|
|
</html>
|