Changeset 64529 in webkit


Ignore:
Timestamp:
Aug 2, 2010 9:57:32 PM (14 years ago)
Author:
pfeldman@chromium.org
Message:

2010-08-02 Pavel Feldman <pfeldman@chromium.org>

Not reviewed. Rolling out r64525 for breaking chromium tests.

  • bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::retrieve):
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r64525 r64529  
     12010-08-02  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Not reviewed. Rolling out r64525 for breaking chromium tests.
     4
     5        * http/tests/security/sandbox-inherit-to-initial-document-2.html:
     6        * platform/chromium/test_expectations.txt:
     7
    182010-08-02  Rajiv Makhijani  <rajivmakhijani@chromium.org>
    29
  • trunk/LayoutTests/http/tests/security/sandbox-inherit-to-initial-document-2.html

    r64525 r64529  
    3636    } else {
    3737        document.getElementById("result").innerHTML = "FAIL: no inner frame";
    38         if (window.layoutTestController) {
    39             layoutTestController.notifyDone();
    40         }
     38        layoutTestController.notifyDone();
    4139    }
    4240}
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r64525 r64529  
    27402740BUG43960 MAC : fast/css/input-search-padding.html = IMAGE
    27412741
     2742BUGWK38705 : http/tests/security/sandbox-inherit-to-initial-document-2.html = TEXT
     2743
    27422744// WebKit roll 58791:58807
    27432745BUG43319 MAC : transforms/2d/zoom-menulist.html = IMAGE PASS
  • trunk/WebCore/ChangeLog

    r64528 r64529  
     12010-08-02  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Not reviewed. Rolling out r64525 for breaking chromium tests.
     4
     5        * bindings/v8/V8Proxy.cpp:
     6        (WebCore::V8Proxy::retrieve):
     7
    182010-08-02  Kevin Ollivier  <kevino@theolliviers.com>
    29
  • trunk/WebCore/bindings/v8/V8Proxy.cpp

    r64525 r64529  
    628628    if (!frame)
    629629        return 0;
    630     return frame->script()->proxy();
     630    return frame->script()->canExecuteScripts(NotAboutToExecuteScript) ? frame->script()->proxy() : 0;
    631631}
    632632
Note: See TracChangeset for help on using the changeset viewer.