Bug 1121738 patch 2 - Add reftest for transform not being supported. r=xidorn

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.)
This commit is contained in:
L. David Baron 2015-01-15 15:07:50 -08:00
parent a8c1becff0
commit b6d9258843
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<!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">
</head>
<body>
<ruby>
<rbc><rb>a</rb><rb>b</rb></rbc>
<rtc><rt>A</rt><rt>B</rt></rtc>
</ruby>
</body>
</html>

View File

@ -0,0 +1,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>

View File

@ -33,6 +33,7 @@ fuzzy-if(winWidget,35,1) == dynamic-removal-3.html dynamic-removal-3-ref.html #
== line-height-2.html line-height-2-ref.html
== line-height-3.html line-height-3-ref.html
load nested-ruby-1.html
== no-transform.html no-transform-ref.html
fails-if(cocoaWidget) == relative-positioning-1.html relative-positioning-1-ref.html # bug 1120280
== relative-positioning-2.html relative-positioning-2-ref.html
== ruby-position-horizontal.html ruby-position-horizontal-ref.html