Title: [109644] trunk/LayoutTests
- Revision
- 109644
- Author
- [email protected]
- Date
- 2012-03-02 17:52:17 -0800 (Fri, 02 Mar 2012)
Log Message
ES5.1-15.3.5.4. prohibits Function.caller from [[Get]]ting a strict caller
https://bugs.webkit.org/show_bug.cgi?id=80011
We now support getting the caller from within an accessor.
Reviewed by Sam Weinig.
* fast/js/function-dot-arguments-and-caller.html:
* platform/qt/Skipped:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (109643 => 109644)
--- trunk/LayoutTests/ChangeLog 2012-03-03 01:48:49 UTC (rev 109643)
+++ trunk/LayoutTests/ChangeLog 2012-03-03 01:52:17 UTC (rev 109644)
@@ -1,3 +1,15 @@
+2012-03-02 Gavin Barraclough <[email protected]>
+
+ ES5.1-15.3.5.4. prohibits Function.caller from [[Get]]ting a strict caller
+ https://bugs.webkit.org/show_bug.cgi?id=80011
+
+ We now support getting the caller from within an accessor.
+
+ Reviewed by Sam Weinig.
+
+ * fast/js/function-dot-arguments-and-caller.html:
+ * platform/qt/Skipped:
+
2012-03-02 Eric Seidel <[email protected]>
Chrome 18 fails html5test.com XHR Blob response test
Modified: trunk/LayoutTests/fast/js/function-dot-arguments-and-caller.html (109643 => 109644)
--- trunk/LayoutTests/fast/js/function-dot-arguments-and-caller.html 2012-03-03 01:48:49 UTC (rev 109643)
+++ trunk/LayoutTests/fast/js/function-dot-arguments-and-caller.html 2012-03-03 01:52:17 UTC (rev 109644)
@@ -80,7 +80,7 @@
eval('(function f() { return f.caller instanceof Object ? "FAIL" : "PASS"; })()'),
(function f() {
- return String({ toString: function g() { return g.caller instanceof Object ? "FAIL" : "PASS"; } });
+ return String({ toString: function g() { return g.caller instanceof Object ? "PASS" : "FAIL"; } });
})(),
(function f() {
Modified: trunk/LayoutTests/platform/qt/Skipped (109643 => 109644)
--- trunk/LayoutTests/platform/qt/Skipped 2012-03-03 01:48:49 UTC (rev 109643)
+++ trunk/LayoutTests/platform/qt/Skipped 2012-03-03 01:52:17 UTC (rev 109644)
@@ -2670,7 +2670,3 @@
# REGRESSION, r109105 made it fail
# https://bugs.webkit.org/show_bug.cgi?id=79555
fast/events/dispatch-message-string-data.html
-
-# ES5.1-15.3.5.4. prohibits Function.caller from [[Get]]ting a strict caller
-# https://bugs.webkit.org/show_bug.cgi?id=80011 (REGRESSION caused by r109461)
-fast/js/function-dot-arguments-and-caller.html
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes