| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 4 * reserved. | 4 * reserved. |
| 5 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 5 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 m_rareInheritedData->m_textOrientation != | 767 m_rareInheritedData->m_textOrientation != |
| 768 other.m_rareInheritedData->m_textOrientation || | 768 other.m_rareInheritedData->m_textOrientation || |
| 769 m_rareInheritedData->m_textCombine != | 769 m_rareInheritedData->m_textCombine != |
| 770 other.m_rareInheritedData->m_textCombine || | 770 other.m_rareInheritedData->m_textCombine || |
| 771 m_rareInheritedData->m_tabSize != | 771 m_rareInheritedData->m_tabSize != |
| 772 other.m_rareInheritedData->m_tabSize || | 772 other.m_rareInheritedData->m_tabSize || |
| 773 m_rareInheritedData->m_textSizeAdjust != | 773 m_rareInheritedData->m_textSizeAdjust != |
| 774 other.m_rareInheritedData->m_textSizeAdjust || | 774 other.m_rareInheritedData->m_textSizeAdjust || |
| 775 m_rareInheritedData->listStyleImage != | 775 m_rareInheritedData->listStyleImage != |
| 776 other.m_rareInheritedData->listStyleImage || | 776 other.m_rareInheritedData->listStyleImage || |
| 777 m_rareInheritedData->m_lineHeightStep != | 777 m_rareInheritedData->m_snapHeightUnit != |
| 778 other.m_rareInheritedData->m_lineHeightStep || | 778 other.m_rareInheritedData->m_snapHeightUnit || |
| 779 m_rareInheritedData->m_snapHeightPosition != |
| 780 other.m_rareInheritedData->m_snapHeightPosition || |
| 779 m_rareInheritedData->textStrokeWidth != | 781 m_rareInheritedData->textStrokeWidth != |
| 780 other.m_rareInheritedData->textStrokeWidth) | 782 other.m_rareInheritedData->textStrokeWidth) |
| 781 return true; | 783 return true; |
| 782 | 784 |
| 783 if (!m_rareInheritedData->shadowDataEquivalent( | 785 if (!m_rareInheritedData->shadowDataEquivalent( |
| 784 *other.m_rareInheritedData.get())) | 786 *other.m_rareInheritedData.get())) |
| 785 return true; | 787 return true; |
| 786 | 788 |
| 787 if (!m_rareInheritedData->quotesDataEquivalent( | 789 if (!m_rareInheritedData->quotesDataEquivalent( |
| 788 *other.m_rareInheritedData.get())) | 790 *other.m_rareInheritedData.get())) |
| (...skipping 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2496 if (value < 0) | 2498 if (value < 0) |
| 2497 fvalue -= 0.5f; | 2499 fvalue -= 0.5f; |
| 2498 else | 2500 else |
| 2499 fvalue += 0.5f; | 2501 fvalue += 0.5f; |
| 2500 } | 2502 } |
| 2501 | 2503 |
| 2502 return roundForImpreciseConversion<int>(fvalue / zoomFactor); | 2504 return roundForImpreciseConversion<int>(fvalue / zoomFactor); |
| 2503 } | 2505 } |
| 2504 | 2506 |
| 2505 } // namespace blink | 2507 } // namespace blink |
| OLD | NEW |