| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007, 2008, 2009 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007, 2008, 2009 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 Google, Inc. | 5 * Copyright (C) 2009 Google, Inc. |
| 6 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 if (locationInContainer.intersects(boundsRect)) { | 400 if (locationInContainer.intersects(boundsRect)) { |
| 401 updateHitTestResult(result, pointInBorderBox); | 401 updateHitTestResult(result, pointInBorderBox); |
| 402 if (!result.addNodeToListBasedTestResult(node(), locationInContainer
, boundsRect)) | 402 if (!result.addNodeToListBasedTestResult(node(), locationInContainer
, boundsRect)) |
| 403 return true; | 403 return true; |
| 404 } | 404 } |
| 405 } | 405 } |
| 406 | 406 |
| 407 return false; | 407 return false; |
| 408 } | 408 } |
| 409 | 409 |
| 410 } | 410 } // namespace blink |
| OLD | NEW |