Title: [154423] trunk/Source/_javascript_Core
Revision
154423
Author
[email protected]
Date
2013-08-21 15:34:32 -0700 (Wed, 21 Aug 2013)

Log Message

https://bugs.webkit.org/show_bug.cgi?id=120127
Remove JSObject::propertyIsEnumerable

Unreviewed typo fix

* runtime/JSObject.h:
    - fix typo

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (154422 => 154423)


--- trunk/Source/_javascript_Core/ChangeLog	2013-08-21 22:32:10 UTC (rev 154422)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-08-21 22:34:32 UTC (rev 154423)
@@ -1,5 +1,15 @@
 2013-08-21  Gavin Barraclough  <[email protected]>
 
+        https://bugs.webkit.org/show_bug.cgi?id=120127
+        Remove JSObject::propertyIsEnumerable
+
+        Unreviewed typo fix
+
+        * runtime/JSObject.h:
+            - fix typo
+
+2013-08-21  Gavin Barraclough  <[email protected]>
+
         https://bugs.webkit.org/show_bug.cgi?id=120139
         PropertyDescriptor argument to define methods should be const
 

Modified: trunk/Source/_javascript_Core/runtime/JSObject.h (154422 => 154423)


--- trunk/Source/_javascript_Core/runtime/JSObject.h	2013-08-21 22:32:10 UTC (rev 154422)
+++ trunk/Source/_javascript_Core/runtime/JSObject.h	2013-08-21 22:34:32 UTC (rev 154423)
@@ -123,7 +123,7 @@
     JS_EXPORT_PRIVATE static bool getOwnPropertySlotByIndex(JSObject*, ExecState*, unsigned propertyName, PropertySlot&);
 
     // The key difference between this and getOwnPropertySlot is that getOwnPropertySlot
-    // currently returns incorrect results for the DOM window (wiith non-own properties)
+    // currently returns incorrect results for the DOM window (with non-own properties)
     // being returned. Once this is fixed we should migrate code & remove this method.
     bool getOwnPropertyDescriptor(ExecState*, PropertyName, PropertyDescriptor&);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to