Skip to content

Commit

Permalink
Cherry pick PR #1183: Remove cruft log (#1184)
Browse files Browse the repository at this point in the history
Refer to the original PR: youtube/cobalt#1183

Accidentally left in youtube/cobalt#1172

b/294602640

Co-authored-by: Andrew Savage <andrewsavage@google.com>
  • Loading branch information
1 parent 2d3fb92 commit 7189506
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cobalt/dom/html_element.cc
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,6 @@ void HTMLElement::set_scroll_left(float x) {

float throwaway, min = x, max = x;
ui_nav_item_->GetBounds(&throwaway, &min, &throwaway, &max);
LOG(INFO) << "min: " << min << ", max: " << max;
x = math::Clamp(x, min, max);
ui_nav_item_->SetContentOffset(x, top);
}
Expand Down

0 comments on commit 7189506

Please sign in to comment.