Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 1 #1

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@
[submodule "bootp"]
path = bootp
url = https://github.com/apple-oss-distributions/bootp
[submodule "cctools"]
path = cctools
url = https://github.com/apple-oss-distributions/cctools
[submodule "configd"]
path = configd
url = https://github.com/apple-oss-distributions/configd
Expand Down Expand Up @@ -763,3 +760,6 @@
[submodule "libsecurity_ldap_dl"]
path = libsecurity_ldap_dl
url = https://github.com/apple-oss-distributions/libsecurity_ldap_dl
[submodule "OpenSSL098"]
path = OpenSSL098
url = https://github.com/apple-oss-distributions/OpenSSL098
2 changes: 1 addition & 1 deletion CF
Submodule CF updated 153 files
2 changes: 1 addition & 1 deletion DiskArbitration
2 changes: 1 addition & 1 deletion ICU
Submodule ICU updated 400 files
2 changes: 1 addition & 1 deletion JavaScriptCore
Submodule JavaScriptCore updated 69 files
+11 −1 API/JSValue.mm
+4 −3 API/ObjCCallbackFunction.mm
+1 −0 API/tests/minidom.c
+1 −0 API/tests/testapi.c
+738 −0 ChangeLog
+1 −1 Configurations/FeatureDefines.xcconfig
+3 −3 Configurations/Version.xcconfig
+1 −1 Info.plist
+0 −30 JavaScriptCore.vcxproj/JavaScriptCore.make
+121 −0 JavaScriptCore.vcxproj/JavaScriptCore.proj
+1 −1 JavaScriptCore.vcxproj/JavaScriptCore.resources/Info.plist
+311 −0 JavaScriptCore.vcxproj/JavaScriptCore.sln
+48 −2 JavaScriptCore.vcxproj/JavaScriptCore.submit.sln
+173 −18 JavaScriptCore.vcxproj/JavaScriptCore.vcxproj
+23 −17 JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters
+1 −1 JavaScriptCore.vcxproj/JavaScriptCoreCommon.props
+2 −2 JavaScriptCore.vcxproj/JavaScriptCoreGenerated.make
+94 −0 JavaScriptCore.vcxproj/JavaScriptCoreGenerated.vcxproj
+2 −2 JavaScriptCore.vcxproj/LLInt/LLIntAssembly/LLIntAssembly.make
+141 −12 JavaScriptCore.vcxproj/LLInt/LLIntAssembly/LLIntAssembly.vcxproj
+1 −1 JavaScriptCore.vcxproj/LLInt/LLIntAssembly/build-LLIntAssembly.sh
+2 −2 JavaScriptCore.vcxproj/LLInt/LLIntDesiredOffsets/LLIntDesiredOffsets.make
+127 −12 JavaScriptCore.vcxproj/LLInt/LLIntDesiredOffsets/LLIntDesiredOffsets.vcxproj
+1 −1 JavaScriptCore.vcxproj/LLInt/LLIntDesiredOffsets/build-LLIntDesiredOffsets.sh
+100 −12 JavaScriptCore.vcxproj/LLInt/LLIntOffsetsExtractor/LLIntOffsetsExtractor.vcxproj
+1 −1 JavaScriptCore.vcxproj/LLInt/LLIntOffsetsExtractor/LLIntOffsetsExtractorCommon.props
+1 −1 JavaScriptCore.vcxproj/build-generated-files.sh
+2 −1 JavaScriptCore.vcxproj/copy-files.cmd
+155 −1 JavaScriptCore.vcxproj/jsc/jsc.vcxproj
+1 −1 JavaScriptCore.vcxproj/jsc/jscCommon.props
+158 −1 JavaScriptCore.vcxproj/testRegExp/testRegExp.vcxproj
+1 −1 JavaScriptCore.vcxproj/testRegExp/testRegExpCommon.props
+144 −2 JavaScriptCore.vcxproj/testapi/testapi.vcxproj
+6 −0 assembler/MacroAssemblerARMv7.h
+0 −5 config.h
+7 −3 dfg/DFGAbstractState.cpp
+11 −6 dfg/DFGArgumentsSimplificationPhase.cpp
+4 −2 dfg/DFGByteCodeParser.cpp
+8 −4 dfg/DFGCSEPhase.cpp
+1 −2 dfg/DFGConstantFoldingPhase.cpp
+2 −0 dfg/DFGFixupPhase.cpp
+1 −2 dfg/DFGNode.h
+5 −2 dfg/DFGNodeType.h
+10 −0 dfg/DFGOperations.cpp
+1 −0 dfg/DFGPredictionPropagationPhase.cpp
+17 −1 dfg/DFGSpeculativeJIT.cpp
+8 −0 dfg/DFGSpeculativeJIT32_64.cpp
+4 −0 dfg/DFGSpeculativeJIT64.cpp
+1 −0 heap/MachineStackMarker.cpp
+1 −0 heap/SlotVisitorInlines.h
+14 −1 interpreter/Interpreter.cpp
+2 −1 jit/JITCall32_64.cpp
+8 −4 jit/JITStubs.cpp
+1 −1 jit/JITStubsMSVC64.asm
+1 −1 jit/JSInterfaceJIT.h
+11 −2 llint/LLIntSlowPaths.cpp
+1 −1 parser/NodeConstructors.h
+14 −1 parser/ResultType.h
+37 −23 runtime/JSArray.cpp
+15 −15 runtime/JSObject.cpp
+10 −3 runtime/JSObject.h
+8 −0 runtime/JSScope.cpp
+1 −0 runtime/JSString.cpp
+11 −3 runtime/JSString.h
+4 −4 runtime/JSStringJoiner.cpp
+13 −21 runtime/Operations.h
+1 −1 runtime/RegExpMatchesArray.h
+4 −0 runtime/StringPrototype.cpp
+6 −0 runtime/Structure.cpp
2 changes: 1 addition & 1 deletion Libnotify
1 change: 1 addition & 0 deletions Macos.dmg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 1 addition & 1 deletion OpenLDAP
1 change: 1 addition & 0 deletions OpenSSL098
Submodule OpenSSL098 added at d49773
2 changes: 1 addition & 1 deletion PowerManagement
2 changes: 1 addition & 1 deletion Security
Submodule Security updated 136 files
2 changes: 1 addition & 1 deletion TimeZoneData
2 changes: 1 addition & 1 deletion WebCore
Submodule WebCore updated 292 files
2 changes: 1 addition & 1 deletion WebKit
Submodule WebKit updated 80 files
+265 −0 ChangeLog
+674 −1 WebKit.vcxproj/Interfaces/Interfaces.vcxproj
+9 −0 WebKit.vcxproj/Interfaces/Interfaces.vcxproj.filters
+3 −3 WebKit.vcxproj/Interfaces/InterfacesCommon.props
+1 −1 WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd
+0 −20 WebKit.vcxproj/WebKit.make
+121 −0 WebKit.vcxproj/WebKit.proj
+314 −0 WebKit.vcxproj/WebKit.sln
+40 −2 WebKit.vcxproj/WebKit.submit.sln
+179 −3 WebKit.vcxproj/WebKit/WebKit.vcxproj
+8 −2 WebKit.vcxproj/WebKit/WebKit.vcxproj.filters
+1 −1 WebKit.vcxproj/WebKit/WebKitApple.props
+2 −2 WebKit.vcxproj/WebKit/WebKitCommon.props
+1 −1 WebKit.vcxproj/WebKit/WebKitDirectX.props
+7 −2 WebKit.vcxproj/WebKit/WebKitPostBuild.cmd
+141 −2 WebKit.vcxproj/WebKitExportGenerator/WebKitExportGenerator.vcxproj
+1 −1 WebKit.vcxproj/WebKitExportGenerator/WebKitExportGenerator.vcxproj.filters
+1 −1 WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorBuildCmd.cmd
+1 −1 WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPostBuild.cmd
+1 −1 WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPreBuild.cmd
+300 −309 WebKit.vcxproj/WebKitExportGenerator/WebKitExports.def.in
+8 −1 WebKit.vcxproj/WebKitExportGenerator/make-export-file-generator
+144 −6 WebKit.vcxproj/WebKitGUID/WebKitGUID.vcxproj
+8 −5 WebKit.vcxproj/WebKitGUID/WebKitGUID.vcxproj.filters
+1 −1 WebKit.vcxproj/WebKitGUID/WebKitGUIDCommon.props
+14 −0 efl/ChangeLog
+1 −1 efl/WebCoreSupport/ChromeClientEfl.cpp
+14 −0 gtk/ChangeLog
+1 −2 gtk/WebCoreSupport/ChromeClientGtk.cpp
+242 −0 mac/ChangeLog
+3 −3 mac/Configurations/Version.xcconfig
+1 −1 mac/Info.plist
+2 −2 mac/Misc/WebNSFileManagerExtras.mm
+0 −12 mac/Misc/WebNSObjectExtras.h
+1 −1 mac/Misc/WebNSPasteboardExtras.mm
+2 −2 mac/Misc/WebNSURLExtras.mm
+2 −2 mac/Plugins/Hosted/NetscapePluginHostManager.h
+2 −1 mac/Plugins/Hosted/NetscapePluginHostManager.mm
+14 −0 mac/Plugins/Hosted/NetscapePluginHostProxy.mm
+3 −0 mac/Plugins/Hosted/NetscapePluginInstanceProxy.h
+13 −0 mac/Plugins/Hosted/NetscapePluginInstanceProxy.mm
+2 −0 mac/Plugins/Hosted/WebHostedNetscapePluginView.h
+74 −29 mac/Plugins/Hosted/WebHostedNetscapePluginView.mm
+7 −0 mac/Plugins/Hosted/WebKitPluginClient.defs
+7 −1 mac/Plugins/Hosted/WebKitPluginHost.defs
+2 −2 mac/Plugins/WebBasePluginPackage.mm
+1 −0 mac/Plugins/WebPluginDatabase.h
+5 −0 mac/Plugins/WebPluginDatabase.mm
+6 −2 mac/WebCoreSupport/WebPlatformStrategies.mm
+1 −1 mac/WebView/WebDeviceOrientationProviderMock.mm
+2 −2 mac/WebView/WebPDFRepresentation.mm
+3 −0 mac/WebView/WebPreferenceKeysPrivate.h
+24 −1 mac/WebView/WebPreferences.mm
+5 −0 mac/WebView/WebPreferencesPrivate.h
+9 −6 mac/WebView/WebView.mm
+7 −1 win/AccessibleBase.cpp
+3 −0 win/AccessibleBase.h
+756 −0 win/AccessibleTextImpl.cpp
+84 −0 win/AccessibleTextImpl.h
+423 −0 win/ChangeLog
+2 −2 win/DOMHTMLClasses.cpp
+262 −0 win/Interfaces/Accessible2/AccessibleEditableText.idl
+684 −0 win/Interfaces/Accessible2/AccessibleText.idl
+98 −0 win/Interfaces/Accessible2/AccessibleText2.idl
+3 −0 win/Interfaces/IWebPreferencesPrivate.idl
+483 −2 win/WebCoreSupport/WebFrameLoaderClient.cpp
+133 −55 win/WebCoreSupport/WebFrameLoaderClient.h
+6 −7 win/WebCoreSupport/WebInspectorClient.cpp
+6 −7 win/WebDataSource.cpp
+4 −3 win/WebElementPropertyBag.cpp
+5 −470 win/WebFrame.cpp
+1 −65 win/WebFrame.h
+3 −3 win/WebFramePolicyListener.cpp
+1 −1 win/WebKit.resources/Info.plist
+0 −9 win/WebKitPrefix.h
+1 −0 win/WebPreferenceKeysPrivate.h
+13 −0 win/WebPreferences.cpp
+3 −0 win/WebPreferences.h
+82 −44 win/WebView.cpp
+3 −0 win/WebView.h
2 changes: 1 addition & 1 deletion WebKit2
Submodule WebKit2 updated 110 files
2 changes: 1 addition & 1 deletion apache
Submodule apache updated 220 files
1 change: 0 additions & 1 deletion cctools
Submodule cctools deleted from ec9b4f
2 changes: 1 addition & 1 deletion copyfile
Submodule copyfile updated 1 files
+55 −17 copyfile.c
2 changes: 1 addition & 1 deletion cups
Submodule cups updated 210 files
2 changes: 1 addition & 1 deletion curl
2 changes: 1 addition & 1 deletion dtrace
2 changes: 1 addition & 1 deletion dyld
2 changes: 1 addition & 1 deletion kext_tools
2 changes: 1 addition & 1 deletion launchd
2 changes: 1 addition & 1 deletion lukemftp
2 changes: 1 addition & 1 deletion ppp
Submodule ppp updated 2 files
+92 −80 Controller/scnc_main.c
+1 −1 PPP_VERSION.h
2 changes: 1 addition & 1 deletion python
Loading