298 // Disable the quirk for tv.naver.com subdomain to be able to simulate hover on videos.
299 if (host.endsWithIgnoringASCIICase(".naver.com"))
300 return !equalLettersIgnoringASCIICase(host, "tv.naver.com");
298 if (host.endsWithIgnoringASCIICase(".naver.com")) {
299 // Disable the quirk for tv.naver.com subdomain to be able to simulate hover on videos.
300 if (equalLettersIgnoringASCIICase(host, "tv.naver.com"))
301 return false;
302 // Disable the quirk on the mobile site.
303 // FIXME: Maybe this quirk should be disabled for "m." subdomains on all sites? These are generally mobile sites that don't need mouse events.
304 if (equalLettersIgnoringASCIICase(host, "m.naver.com"))
305 return false;
306 return true;
307 }