| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 // function is called. | 862 // function is called. |
| 863 x = lineDirectionPointForBlockDirectionNavigationOf(visiblePosition); | 863 x = lineDirectionPointForBlockDirectionNavigationOf(visiblePosition); |
| 864 m_xPosForVerticalArrowNavigation = x; | 864 m_xPosForVerticalArrowNavigation = x; |
| 865 } else { | 865 } else { |
| 866 x = m_xPosForVerticalArrowNavigation; | 866 x = m_xPosForVerticalArrowNavigation; |
| 867 } | 867 } |
| 868 | 868 |
| 869 return x; | 869 return x; |
| 870 } | 870 } |
| 871 | 871 |
| 872 DEFINE_TRACE(SelectionModifier) { | |
| 873 visitor->trace(m_frame); | |
| 874 visitor->trace(m_selection); | |
| 875 } | |
| 876 | |
| 877 } // namespace blink | 872 } // namespace blink |
| OLD | NEW |