New issue
Advanced search Search tips

Issue 637347 link

Starred by 1 user

Issue metadata

Status: Archived
Owner: ----
Closed: Aug 2017
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug



Sign in to add a comment

Chrome freezes on hover over certain items

Reported by justinco...@gmail.com, Aug 12 2016

Issue description

Chrome Version       : 52.0.2743.116 m
URLs (if applicable) : http://www.tellurideskiresort.com/
Other browsers tested:
  Add OK or FAIL, along with the version, after other browsers where you
have tested this issue:
     Safari: 10.0
    Firefox: 43.0.1
         IE: 11.0.33

What steps will reproduce the problem?
(1) Load url
(2) Hover over nav item Things To Do
(3)

What is the expected result?
Dropdown containing navigation items and a promo with an image and some copy

What happens instead?
No dropdown, frozen chrome

Please provide any additional information below. Attach a screenshot if
possible.
This did not happen in 51.x versions of Chrome. Only happens so far in 52.x.
In the inspector, if we remove the div surrounding the image in the promo (for "Things To Do") the issue is not there. Styles on the image include height: 0, and padding-bottom: 60%.

Javascript running on page:

    var $hasDropper = $('nav .has-dropper');
    $hasDropper.hover(
        // Hover in 
        function () {
            $hasDropper.removeClass('in');
            $(this).addClass('in');
        },
        // Hover Out
        function () {
            $(this).removeClass('in');
        }
    );

 
Other browsers in list above are working.
The issue seems to be related to CSS columns. When we remove the columns style it works. Currently we have implemented a fix for screen sizes above 1200px. For some reason under that screen width still has the issue when using columns. We have to go into the Chrome task manager and stop the task.
Components: UI
Project Member

Comment 4 by sheriffbot@chromium.org, Aug 22 2017

Status: Archived (was: Unconfirmed)
Issue has not been modified or commented on in the last 365 days, please re-open or file a new bug if this is still an issue.

For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot

Sign in to add a comment