This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/JavaScriptCore/runtime/ArrayPrototype.cpp b/Source/JavaScriptCore/runtime/ArrayPrototype.cpp | |
index 818895c..4b1278a 100644 | |
--- a/Source/JavaScriptCore/runtime/ArrayPrototype.cpp | |
+++ b/Source/JavaScriptCore/runtime/ArrayPrototype.cpp | |
@@ -383,7 +383,7 @@ EncodedJSValue JSC_HOST_CALL arrayProtoFuncJoin(ExecState* exec) | |
UString separator; | |
if (!exec->argument(0).isUndefined()) | |
- separator = exec->argument(0).toString(exec)->value(exec); | |
+ separator = fastJSValuetoUString(exec->argument(0), exec); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Obj-C: | |
@interface | |
-uid | |
@end | |
JSC: | |
object.uid() | |
to --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Tools/ChangeLog b/Tools/ChangeLog | |
index 895629c..4494778 100644 | |
--- a/Tools/ChangeLog | |
+++ b/Tools/ChangeLog | |
@@ -1,3 +1,14 @@ | |
+2012-05-29 Benjamin Poulain <[email protected]> | |
+ | |
+ Fix the type of dispatch_time() offset | |
+ | |
+ Rubber-stamped by Joseph Pecoraro. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/WTF/wtf/HashTable.h b/Source/WTF/wtf/HashTable.h | |
index ccf62dc..3aad1e1 100644 | |
--- a/Source/WTF/wtf/HashTable.h | |
+++ b/Source/WTF/wtf/HashTable.h | |
@@ -405,7 +405,7 @@ namespace WTF { | |
void removeAndInvalidate(ValueType*); | |
void remove(ValueType*); | |
- bool shouldExpand() const { return (m_keyCount + m_deletedCount) * m_maxLoad >= m_tableSize; } | |
+ bool shouldExpand() const { return (m_keyCount + m_deletedCount) * m_maxLoad > m_tableSize; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog | |
index 48379ba..27872ed 100644 | |
--- a/Source/WebCore/ChangeLog | |
+++ b/Source/WebCore/ChangeLog | |
@@ -1,3 +1,31 @@ | |
+2013-01-04 Benjamin Poulain <[email protected]> | |
+ | |
+ Optimize TransformationMatrix::multiply() for x86_64 | |
+ https://bugs.webkit.org/show_bug.cgi?id=105719 | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: DumpRenderTree [52029] | |
Path: /Users/USER/*/DumpRenderTree | |
Identifier: DumpRenderTree | |
Version: 0 | |
Code Type: X86-64 (Native) | |
Parent Process: Python [51953] | |
User ID: 501 | |
Date/Time: 2013-02-21 18:26:11.327 -0800 | |
OS Version: Mac OS X 10.8.2 (12C60) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Source/WebCore/ChangeLog | |
=================================================================== | |
--- Source/WebCore/ChangeLog (revision 149704) | |
+++ Source/WebCore/ChangeLog (working copy) | |
@@ -1,3 +1,13 @@ | |
+2013-05-07 Benjamin Poulain <[email protected]> | |
+ | |
+ We should not ref() the RefPtr twice in CanvasStyle | |
+ | |
+ Reviewed by NOBODY (OOPS!). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Source/WTF/ChangeLog | |
=================================================================== | |
--- Source/WTF/ChangeLog (revision 150227) | |
+++ Source/WTF/ChangeLog (working copy) | |
@@ -1,3 +1,12 @@ | |
+2013-05-16 Benjamin Poulain <[email protected]> | |
+ | |
+ Add the symbol WTFInvokeCrashHook back for binary compatibility. | |
+ | |
+ Reviewed by NOBODY (OOPS!). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Websites/webkit.org/ChangeLog | |
=================================================================== | |
--- Websites/webkit.org/ChangeLog (revision 153851) | |
+++ Websites/webkit.org/ChangeLog (working copy) | |
@@ -1,3 +1,19 @@ | |
+2013-08-08 Benjamin Poulain <[email protected]> | |
+ | |
+ Give a smaller viewport to webkit.org on devices | |
+ | |
+ Reviewed by NOBODY (OOPS!). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Websites/webkit.org/ChangeLog | |
=================================================================== | |
--- Websites/webkit.org/ChangeLog (revision 153861) | |
+++ Websites/webkit.org/ChangeLog (working copy) | |
@@ -1,3 +1,26 @@ | |
+2013-08-08 Benjamin Poulain <[email protected]> | |
+ | |
+ Fix webkit.org content overflowing their content box | |
+ | |
+ Reviewed by NOBODY (OOPS!). |