| Index: sky/engine/core/css/resolver/FontBuilder.cpp
|
| diff --git a/sky/engine/core/css/resolver/FontBuilder.cpp b/sky/engine/core/css/resolver/FontBuilder.cpp
|
| index 1aa74db5cea36d5f290d5fe941839c8d518cdc1e..6dab4e6b41c7720033c3e7d0dbb59bc6c136ab19 100644
|
| --- a/sky/engine/core/css/resolver/FontBuilder.cpp
|
| +++ b/sky/engine/core/css/resolver/FontBuilder.cpp
|
| @@ -457,12 +457,6 @@ static void getFontAndGlyphOrientation(const RenderStyle* style, FontOrientation
|
| glyphOrientation = NonCJKGlyphOrientationUpright;
|
| return;
|
| case TextOrientationSideways:
|
| - if (style->writingMode() == LeftToRightWritingMode) {
|
| - // FIXME: This should map to sideways-left, which is not supported yet.
|
| - fontOrientation = Vertical;
|
| - glyphOrientation = NonCJKGlyphOrientationVerticalRight;
|
| - return;
|
| - }
|
| fontOrientation = Horizontal;
|
| glyphOrientation = NonCJKGlyphOrientationVerticalRight;
|
| return;
|
|
|