Commit 54d31ae1 authored by mitz@apple.com's avatar mitz@apple.com

Reviewed by Sam Weinig.

        - fix <rdar://problem/6404439> REGRESSION: Overlapping text and other
          layout issues in View Sample feature of MYOB FIrstEdge v3

        * page/Navigator.cpp:
        (WebCore::shouldHideFourDot): Added "tdqm_loader.js" to the list of
        JavaScript files this quirk applies to.



git-svn-id: svn://svn.chromium.org/blink/trunk@42449 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 4c284e0c
2009-04-13 Dan Bernstein <mitz@apple.com>
Reviewed by Sam Weinig.
- fix <rdar://problem/6404439> REGRESSION: Overlapping text and other
layout issues in View Sample feature of MYOB FIrstEdge v3
* page/Navigator.cpp:
(WebCore::shouldHideFourDot): Added "tdqm_loader.js" to the list of
JavaScript files this quirk applies to.
2009-04-13 Sam Weinig <sam@webkit.org>
Reviewed by Oliver Hunt.
......@@ -75,7 +75,7 @@ static bool shouldHideFourDot(Frame* frame)
const String* sourceURL = frame->script()->sourceURL();
if (!sourceURL)
return false;
if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js")))
if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js") || sourceURL->endsWith("/tdqm_loader.js")))
return false;
Settings* settings = frame->settings();
if (!settings)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment