Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: ui/gfx/geometry/rect_unittest.cc

Issue 2268423003: Adjust gfx::Rect's width and height to avoid integer overflow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Also fix width Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« ui/gfx/geometry/rect.h ('K') | « ui/gfx/geometry/rect.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <limits> 5 #include <limits>
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 EXPECT_FLOAT_EQ( 908 EXPECT_FLOAT_EQ(
909 0.0f, f.ManhattanInternalDistance(gfx::RectF(-1.0f, 0.0f, 1.1f, 1.0f))); 909 0.0f, f.ManhattanInternalDistance(gfx::RectF(-1.0f, 0.0f, 1.1f, 1.0f)));
910 EXPECT_FLOAT_EQ( 910 EXPECT_FLOAT_EQ(
911 0.1f + kEpsilon, 911 0.1f + kEpsilon,
912 f.ManhattanInternalDistance(gfx::RectF(-1.5f, 0.0f, 1.4f, 1.0f))); 912 f.ManhattanInternalDistance(gfx::RectF(-1.5f, 0.0f, 1.4f, 1.0f)));
913 EXPECT_FLOAT_EQ( 913 EXPECT_FLOAT_EQ(
914 kEpsilon, 914 kEpsilon,
915 f.ManhattanInternalDistance(gfx::RectF(-1.5f, 0.0f, 1.5f, 1.0f))); 915 f.ManhattanInternalDistance(gfx::RectF(-1.5f, 0.0f, 1.5f, 1.0f)));
916 } 916 }
917 917
918 TEST(RectTest, IntegerOverflow) {
919 Rect height_overflow(0, std::numeric_limits<int>::max() - 10, 100, 100);
920 EXPECT_EQ(10, height_overflow.height());
danakj 2016/08/25 17:59:21 can you EXPECT_EQ(max(), height_overflow.bottom())
sunxd 2016/08/25 19:25:09 Acknowledged.
921
922 Rect width_overflow(std::numeric_limits<int>::max() - 10, 0, 100, 100);
923 EXPECT_EQ(10, width_overflow.width());
924
925 Rect size_height_overflow(Point(0, std::numeric_limits<int>::max() - 10),
926 Size(100, 100));
927 EXPECT_EQ(10, size_height_overflow.height());
928
929 Rect size_width_overflow(Point(std::numeric_limits<int>::max() - 10, 0),
930 Size(100, 100));
931 EXPECT_EQ(10, size_width_overflow.width());
932 }
933
918 } // namespace gfx 934 } // namespace gfx
OLDNEW
« ui/gfx/geometry/rect.h ('K') | « ui/gfx/geometry/rect.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698