HomeSort by relevance Sort by last modified time
    Searched defs:writingMode (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.h 316 SVGWritingMode writingMode() const { return (SVGWritingMode) svg_inherited_flags._writingMode; }
361 bool isVerticalWritingMode() const { return writingMode() == WM_TBRL || writingMode() == WM_TB; }
RenderStyle.h 191 unsigned m_writingMode : 2; // WritingMode
421 Length logicalLeft() const { return surround->offset.logicalLeft(writingMode()); }
422 Length logicalRight() const { return surround->offset.logicalRight(writingMode()); }
423 Length logicalTop() const { return surround->offset.before(writingMode()); }
424 Length logicalBottom() const { return surround->offset.after(writingMode()); }
657 Length marginBefore() const { return surround->margin.before(writingMode()); }
658 Length marginAfter() const { return surround->margin.after(writingMode()); }
659 Length marginStart() const { return surround->margin.start(writingMode(), direction()); }
660 Length marginEnd() const { return surround->margin.end(writingMode(), direction());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.cpp 134 WritingMode writingMode = style->writingMode();
136 // paged-x always corresponds to LeftToRightPaginated or RightToLeftPaginated. If the WritingMode
137 // is horizontal, then we use TextDirection to choose between those options. If the WritingMode
140 if ((isHorizontalWritingMode && textDirection == LTR) || writingMode == LeftToRightWritingMode)
145 // paged-y always corresponds to TopToBottomPaginated or BottomToTopPaginated. If the WritingMode
146 // is horizontal, then the direction of the horizontality dictates the choice. If the WritingMode
148 if (writingMode == TopToBottomWritingMode || (!isHorizontalWritingMode && textDirection == RTL))
    [all...]

Completed in 136 milliseconds