blob: ac78c16d4b9f650c3ba868d3e69fed84ee6a1f8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
|