Changeset 64740 in webkit


Ignore:
Timestamp:
Aug 5, 2010 6:19:53 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-05 Charles Wei <charles.wei@torchmobile.com.cn>

Reviewed by George Staikos.

https://bugs.webkit.org/show_bug.cgi?id=43469
<noscript> is working wrong in some cases when xhtmlmp is enabled.

  • fast/xhtmlmp/noscript-basic-expected.txt: Added.
  • fast/xhtmlmp/noscript-basic.xhtml: Added.

2010-08-05 Charles Wei <charles.wei@torchmobile.com.cn>

Reviewed by George Staikos.

<noscript> is working the other way around in some cases with xhtmlmp enabled
https://bugs.webkit.org/show_bug.cgi?id=43469

Test: fast/xhtmlmp/noscript-basic.xhtml

  • dom/Document.cpp: (WebCore::Document::Document):
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r64736 r64740  
     12010-08-05  Charles Wei  <charles.wei@torchmobile.com.cn>
     2
     3        Reviewed by George Staikos.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=43469
     6        <noscript> is working wrong in some cases when xhtmlmp is enabled.
     7
     8        * fast/xhtmlmp/noscript-basic-expected.txt: Added.
     9        * fast/xhtmlmp/noscript-basic.xhtml: Added.
     10
    1112010-08-05  Pavel Feldman  <pfeldman@chromium.org>
    212
  • trunk/WebCore/ChangeLog

    r64738 r64740  
     12010-08-05  Charles Wei  <charles.wei@torchmobile.com.cn>
     2
     3        Reviewed by George Staikos.
     4
     5        <noscript> is working the other way around in some cases with xhtmlmp enabled
     6        https://bugs.webkit.org/show_bug.cgi?id=43469
     7
     8        Test: fast/xhtmlmp/noscript-basic.xhtml
     9
     10        * dom/Document.cpp:
     11        (WebCore::Document::Document):
     12
    1132010-08-05  Yury Semikhatsky  <yurys@chromium.org>
    214
  • trunk/WebCore/dom/Document.cpp

    r64383 r64740  
    466466    m_docID = docID++;
    467467#if ENABLE(XHTMLMP)
    468     m_shouldProcessNoScriptElement = m_frame && m_frame->script()->canExecuteScripts(NotAboutToExecuteScript);
     468    m_shouldProcessNoScriptElement = !(m_frame && m_frame->script()->canExecuteScripts(NotAboutToExecuteScript));
    469469#endif
    470470}
Note: See TracChangeset for help on using the changeset viewer.