Reviewed by Adam Barth.
Committed by Dirk Pranke.
Added missing "if (window.layoutTestController)" check.
Removed expectation for test case that should now pass with this bugfix.
https://bugs.webkit.org/show_bug.cgi?id=38705
* http/tests/security/sandbox-inherit-to-initial-document-2.html:
* platform/chromium/test_expectations.txt:
2010-08-02 Rajiv Makhijani <rajivmakhijani@chromium.org>
Reviewed by Adam Barth.
Committed by Dirk Pranke.
Bug 38705 - [v8] chromium fails http/tests/sandbox-inherit-to-initial-document-2
https://bugs.webkit.org/show_bug.cgi?id=38705
WebCore::V8Proxy::retrieve(Frame* frame) calls WebCore::ScriptController::canExecuteScripts
and returns 0 if canExecuteScripts is false. It should return the proxy regardless
of whether the frame can execute scripts.
* bindings/v8/V8Proxy.cpp:
(WebCore::V8Proxy::retrieve): Removed canExecuteScripts check.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64525
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-08-02 Rajiv Makhijani <rajivmakhijani@chromium.org>
+
+ Reviewed by Adam Barth.
+
+ Committed by Dirk Pranke.
+
+ Added missing "if (window.layoutTestController)" check.
+ Removed expectation for test case that should now pass with this bugfix.
+
+ https://bugs.webkit.org/show_bug.cgi?id=38705
+
+ * http/tests/security/sandbox-inherit-to-initial-document-2.html:
+ * platform/chromium/test_expectations.txt:
+
2010-08-02 Martin Robinson <mrobinson@igalia.com>
Reviewed by Xan Lopez.
doc.body.appendChild(scr);
} else {
document.getElementById("result").innerHTML = "FAIL: no inner frame";
- layoutTestController.notifyDone();
+ if (window.layoutTestController) {
+ layoutTestController.notifyDone();
+ }
}
}
</script>
BUG43960 WIN LINUX : fast/css/input-search-padding.html = IMAGE+TEXT
BUG43960 MAC : fast/css/input-search-padding.html = IMAGE
-BUGWK38705 : http/tests/security/sandbox-inherit-to-initial-document-2.html = TEXT
-
// WebKit roll 58791:58807
BUG43319 MAC : transforms/2d/zoom-menulist.html = IMAGE PASS
BUG43319 MAC : fast/forms/select-empty-option-height.html = TIMEOUT IMAGE PASS
+2010-08-02 Rajiv Makhijani <rajivmakhijani@chromium.org>
+
+ Reviewed by Adam Barth.
+
+ Committed by Dirk Pranke.
+
+ Bug 38705 - [v8] chromium fails http/tests/sandbox-inherit-to-initial-document-2
+ https://bugs.webkit.org/show_bug.cgi?id=38705
+
+ WebCore::V8Proxy::retrieve(Frame* frame) calls WebCore::ScriptController::canExecuteScripts
+ and returns 0 if canExecuteScripts is false. It should return the proxy regardless
+ of whether the frame can execute scripts.
+
+ * bindings/v8/V8Proxy.cpp:
+ (WebCore::V8Proxy::retrieve): Removed canExecuteScripts check.
+
2010-08-02 Brady Eidson <beidson@apple.com>
Reviewed by Anders Carlsson.
{
if (!frame)
return 0;
- return frame->script()->canExecuteScripts(NotAboutToExecuteScript) ? frame->script()->proxy() : 0;
+ return frame->script()->proxy();
}
V8Proxy* V8Proxy::retrieve(ScriptExecutionContext* context)