| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012, Google Inc. All rights reserved. | 2 * Copyright (c) 2012, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 // Lines have horizontal orientation; modes horizontal-tb. | 42 // Lines have horizontal orientation; modes horizontal-tb. |
| 43 inline bool isHorizontalWritingMode(WritingMode writingMode) { | 43 inline bool isHorizontalWritingMode(WritingMode writingMode) { |
| 44 return writingMode == TopToBottomWritingMode; | 44 return writingMode == TopToBottomWritingMode; |
| 45 } | 45 } |
| 46 | 46 |
| 47 // Bottom of the line occurs earlier in the block; modes vertical-lr. | 47 // Bottom of the line occurs earlier in the block; modes vertical-lr. |
| 48 inline bool isFlippedLinesWritingMode(WritingMode writingMode) { | 48 inline bool isFlippedLinesWritingMode(WritingMode writingMode) { |
| 49 return writingMode == LeftToRightWritingMode; | 49 return writingMode == LeftToRightWritingMode; |
| 50 } | 50 } |
| 51 | 51 |
| 52 // Block progression increases in the opposite direction to normal; modes vertic
al-rl. | 52 // Block progression increases in the opposite direction to normal; modes |
| 53 // vertical-rl. |
| 53 inline bool isFlippedBlocksWritingMode(WritingMode writingMode) { | 54 inline bool isFlippedBlocksWritingMode(WritingMode writingMode) { |
| 54 return writingMode == RightToLeftWritingMode; | 55 return writingMode == RightToLeftWritingMode; |
| 55 } | 56 } |
| 56 | 57 |
| 57 } // namespace blink | 58 } // namespace blink |
| 58 | 59 |
| 59 #endif // WritingMode_h | 60 #endif // WritingMode_h |
| OLD | NEW |