mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6c98467261
This fails without the patch; I'm hoping it will be fixed by the combination of patch 1 in this bug and bug 1055667 patch 5. (Interestingly, it fails both due to mispositioning as expected, and also due to bad overflow area computation causing failure to paint the ruby text.)
20 lines
381 B
HTML
20 lines
381 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Bug 1121738 - Ruby should not support transform</title>
|
|
<link rel="stylesheet" href="common.css">
|
|
<style>
|
|
ruby, rbc, rb, rtc, rt {
|
|
transform: translateX(50px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ruby>
|
|
<rbc><rb>a</rb><rb>b</rb></rbc>
|
|
<rtc><rt>A</rt><rt>B</rt></rtc>
|
|
</ruby>
|
|
</body>
|
|
</html>
|