Title: [197422] trunk/Source/_javascript_Core
Revision
197422
Author
[email protected]
Date
2016-03-01 15:58:11 -0800 (Tue, 01 Mar 2016)

Log Message

Remove FIXMEs and add valid test cases after necessary patch has landed.

Rubber stamped by Mark Lam.

* tests/stress/proxy-prevent-extensions.js:
(assert.Object.isSealed):
(assert):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (197421 => 197422)


--- trunk/Source/_javascript_Core/ChangeLog	2016-03-01 23:57:41 UTC (rev 197421)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-03-01 23:58:11 UTC (rev 197422)
@@ -1,5 +1,15 @@
 2016-03-01  Saam barati  <[email protected]>
 
+        Remove FIXMEs and add valid test cases after necessary patch has landed.
+
+        Rubber stamped by Mark Lam.
+
+        * tests/stress/proxy-prevent-extensions.js:
+        (assert.Object.isSealed):
+        (assert):
+
+2016-03-01  Saam barati  <[email protected]>
+
         [ES6] Implement Proxy.[[IsExtensible]]
         https://bugs.webkit.org/show_bug.cgi?id=154872
 

Modified: trunk/Source/_javascript_Core/tests/stress/proxy-prevent-extensions.js (197421 => 197422)


--- trunk/Source/_javascript_Core/tests/stress/proxy-prevent-extensions.js	2016-03-01 23:57:41 UTC (rev 197421)
+++ trunk/Source/_javascript_Core/tests/stress/proxy-prevent-extensions.js	2016-03-01 23:58:11 UTC (rev 197422)
@@ -202,12 +202,7 @@
         assert(called);
         called = false;
 
-        // FIXME: This is true once we implement Proxy.[[IsExtensible]]
-        // https://bugs.webkit.org/show_bug.cgi?id=154872
-        /*
         assert(!Reflect.isExtensible(proxy));
-        */
-
         assert(!Reflect.isExtensible(target));
         assert(!Object.isExtensible(target));
         assert(Object.isFrozen(target));
@@ -234,12 +229,7 @@
         assert(called);
         called = false;
 
-        // FIXME: This is true once we implement Proxy.[[IsExtensible]]
-        // https://bugs.webkit.org/show_bug.cgi?id=154872
-        /*
         assert(!Reflect.isExtensible(proxy));
-        */
-
         assert(!Reflect.isExtensible(target));
         assert(!Object.isExtensible(target));
         assert(Object.isFrozen(target));
@@ -266,12 +256,7 @@
         assert(called);
         called = false;
 
-        // FIXME: This is true once we implement Proxy.[[IsExtensible]]
-        // https://bugs.webkit.org/show_bug.cgi?id=154872
-        /*
         assert(!Reflect.isExtensible(proxy));
-        */
-
         assert(!Reflect.isExtensible(target));
         assert(!Object.isExtensible(target));
         assert(Object.isFrozen(target));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to