|
Lines 295-303
bool Quirks::shouldDispatchSimulatedMous
Source/WebCore/page/Quirks.cpp_sec1
|
| 295 |
return true; |
295 |
return true; |
| 296 |
if (equalLettersIgnoringASCIICase(host, "naver.com")) |
296 |
if (equalLettersIgnoringASCIICase(host, "naver.com")) |
| 297 |
return true; |
297 |
return true; |
| 298 |
// Disable the quirk for tv.naver.com subdomain to be able to simulate hover on videos. |
298 |
if (host.endsWithIgnoringASCIICase(".naver.com")) { |
| 299 |
if (host.endsWithIgnoringASCIICase(".naver.com")) |
299 |
// Disable the quirk for tv.naver.com subdomain to be able to simulate hover on videos. |
| 300 |
return !equalLettersIgnoringASCIICase(host, "tv.naver.com"); |
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 |
} |
| 301 |
return false; |
308 |
return false; |
| 302 |
} |
309 |
} |
| 303 |
|
310 |
|