浏览苹果自己的WebKit项目SVN代码库最近的ChangeLog

https://trac.webkit.org/export/178624/trunk/Source/WebCore/ChangeLog 2015-01-15 Antti Koivisto Rename Font to FontCascade https://bugs.webkit.org/show_bug.cgi?id=140442 2015-01-11 Sam Weinig Remove support for SharedWorkers https://bugs.webkit.org/show_bug.cgi?id=140344
https://trac.webkit.org/browser/trunk/Source/WebCore/contentextensions?rev=178624 ContentExtensions模块看起来似乎是想做一个URL广告过滤功能? 2015-01-12 Andreas Kling Guard web thread stuff with USE(WEB_THREAD) instead of PLATFORM(IOS). Dan pointed out that we should guard WebThreadIsLockedOrDisabled()
with USE(WEB_THREAD) to communicate our ambitions to someday have an iOS build of WebKit that doesn‘t need any of that. WEB_THREAD? 2015-01-12 Myles C. Maxfield Allow targetting the SVG->OTF font converter with ENABLE(SVG_OTF_CONVERTER) https://bugs.webkit.org/show_bug.cgi?id=136769
2015-01-09 Chris Dumez Get rid of legacy StyleBuilder switch in StyleResolver.cpp https://bugs.webkit.org/show_bug.cgi?id=14031 生成的StyleBuilder类?这个值得赞 2015-01-09 Bem Jones-Bey [CSS Shapes] content inside second shape area when two floats interact https://bugs.webkit.org/show_bug.cgi?id=137702
CSS Shapes模块还在改bug呢 2015-01-09 Gwang Yoon Hwang Rename GraphicsLayerAnimation to TextureMapperAnimation https://bugs.webkit.org/show_bug.cgi?id=140296 2015-01-08 Darin Adler Modernize and streamline HTMLTokenizer https://bugs.webkit.org/show_bug.cgi?id=140166
流式html解析不知道想做到什么程度? 2015-01-08 Benjamin Poulain [WK2] Start a prototype for declarative site specific extensions https://bugs.webkit.org/show_bug.cgi?id=140160 网站特定的扩展?哦,可以用来实现UserScript、Hybrid API、Ad Block! 2015-01-08 Benjamin Poulain Make better use of the
stack when compiling selectors https://bugs.webkit.org/show_bug.cgi?id=139615 rdar://problem/19226482 看起来有点意思,cssjit? 2015-01-08 Gwang Yoon Hwang [CoordinatedGraphics] Update fixedVisibleContentRect only it is actually changed https://bugs.webkit.org/show_bug.cgi?id=140244
这相当于Chromium的cc了 2015-01-08 Gwang Yoon Hwang [GTK] Seperate updateBackingStore from flushCompositingState. https://bugs.webkit.org/show_bug.cgi?id=136887 LayerTreeHostGtk?嗯?怎么感觉像是从chromium代码里借鉴了一些名字 2015-01-07 Gwang Yoon Hwang [GTK][ThreadedCompositor] Add
support for threaded compositor. https://bugs.webkit.org/show_bug.cgi?id=118265 同上 2015-01-07 Bem Jones-Bey [CSS Shapes] Content does not wrap with overflow: hidden and reference box different from margin-box https://bugs.webkit.org/show_bug.cgi?id=138139
2015-01-07 Zan Dobersek [TexMap] Use std::sort instead of qsort in TextureMapperLayer::sortByZOrder() https://bugs.webkit.org/show_bug.cgi?id=136212 2015-01-06 Chris Dumez Only throttle DOM timers if they change CSS properties that cannot cause non-descendant
elements to become visible https://bugs.webkit.org/show_bug.cgi?id=140142 2015-01-06 Chris Dumez Do not attempt to revalidate cached main resource on back/forward navigation https://bugs.webkit.org/show_bug.cgi?id=139263 HTTP Cache协议规范的细微调整 2015-01-06 Chris
Dumez Move ‘-webkit-scroll-snap-*‘ CSS properties to the new StyleBuilder https://bugs.webkit.org/show_bug.cgi?id=140112 嗯?这是一个什么奇怪的CSS属性? 2015-01-06 Antti Koivisto Resolve mirroring and variant in Font instead of FontGlyphs https://bugs.webkit.org/show_bug.cgi?id=14007
2015-01-05 Antti Koivisto Font::primaryFontData() should return a reference https://bugs.webkit.org/show_bug.cgi?id=140081 从代码修改来看,苹果的开发人员跟喜欢做些与编译器、字体显示/排版相关的工作。很多地方指针改成了引用,这样就不需要再做无用的空指针检查了(引用不可能为空)遗憾的是Apple似乎不再提供WebKit源代码的打包下载了。而通过SVN checkout最新版本估计会遇到网络错误。

时间: 2024-10-27 22:10:26

浏览苹果自己的WebKit项目SVN代码库最近的ChangeLog的相关文章

linux下创建svn代码库

1.安装svn客户端 2.创建svn代码库 1.安装svn客户端 1.1.使用命令安装 1)CentOS $ yum install subversion 2)ubuntu sudo apt-get install subversion 1.2.源码安装 http://www.cnblogs.com/fengbohello/p/4142810.html 2.开启svn服务进程 2.1.我的习惯是把代码仓库放在/opt/svn目录下,所以先创建目录/opt/svn $ mkdir /opt/svn

转载: linux下创建svn代码库

linux下创建svn代码库 1.安装svn客户端 2.创建svn代码库 1.安装svn客户端 1.1.使用命令安装 1)CentOS $ yum install subversion 2)ubuntu sudo apt-get install subversion 1.2.源码安装 http://www.cnblogs.com/fengbohello/p/4142810.html 2.开启svn服务进程 2.1.我的习惯是把代码仓库放在/opt/svn目录下,所以先创建目录/opt/svn $

android项目SVN代码管理问题

用svn控制版本,svn本身是不会识别哪些该传,哪些不该传,这就导致有些关于路径的东西(比如拓展jar的路径)也被上传了,而当别人下载后,那个路径对于这个人可能完全不存在,项目编译就会出问题.用eclipse安装了svn插件,不能一股脑把android项目都传上去. Android项目有以下文件内容不需要添加到版本控制: bin目录 gen目录 .classpath文件 .project文件 要想在eclipse里屏蔽它们,需要这样操作: Click on Window -> Preferenc

Android项目svn代码管理问题[转]

用svn控制版本,svn本身是不会识别哪些该传,哪些不该传,这就导致有些关于路径的东西(比如拓展jar的路径)也被上传了,而当别人下载后,那个路径对于这个人可能完全不存在,项目编译就会出问题.用eclipse安装了svn插件,不能一股脑把android项目都传上去. Android项目有以下文件内容不需要添加到版本控制: bin目录 gen目录 .classpath文件 .project文件 要想在eclipse里屏蔽它们,需要这样操作: Click on Window -> Preferenc

CentOS6.8 安装配置以svnadmin管理svn代码库

一.系统环境及说明 CentOS6.8_X64 subversion版本 1.8.15 svn是版本控制软件,虽然git大用替代它的趋势,但不可否则还有很多老用户喜欢它,及svn有一个好用的功能hooks钩子功能.后面再说这个hooks的用处. 1.准备repo $cat /etc/yum.repo.d/svn.repo [WandiscoSVN] name=Wandisco SVN Repo baseurl=http://opensource.wandisco.com/centos/$rele

实战搭建SVN代码版本服务器

前言:公司要求搭建一台SVN代码版本管理服务器,用于管理所有代码资产: 项目架构图 1.环境安装 [[email protected]_centos ~]#yum –y install subversion mod_dav_svn [[email protected]_centos ~]#cat /etc/services |grep –color svn                                                       #查看己注册 svn      

开源项目成熟度分析工具-利用github api获取代码库的信息

1.github api github api是http形式的api,功能还是比较丰富的,博主因为项目的原因主要用到的是提取project信息这项功能,返回的数据是JSON格式. api页:https://developer.github.com/v3/ Options: (H) means HTTP/HTTPS only, (F) means FTP only --anyauth Pick "any" authentication method (H) -a, --append Ap

Android浏览器(一):Webkit项目与Chromuim项目

转载请注明原文地址:http://blog.csdn.net/u012637501/article/details/46878253 目前,移动设备浏览器上常用的内核有Webkit,Blink,Trident,Gecko等,其中iPhone和iPad等苹果iOS平台主要是WebKit,Android 4.4之前的Android系统浏览器内核是WebKit,Android4.4系统浏览器切换到了Chromium(内核是Webkit的分支Blink),Windows Phone 8系统浏览器内核是T

SVN代码上线流程

为了确保维护svn代码的正确性,特制定上传代码流程如下: 开发人员开发: 开发人员本地分支----取得svn最新代码(根据前一天的最后tag合并)-----代码开发----提交分支. 合并时候注意事项,对于冲突的文件看是不是自己本地正在修改的文件,不是的话就按照诛仙的tag来覆盖,否则按照本地,最好提前解决冲突问题(不好操作的话就被分好自己本地代码,讲SVN代码拿过来,好好看一下冲突冲突的问题),这样在回合的时候就可以按照自己分支来操作了(当然我们也要看一下,以防止别人先合并) 开发人员代码合并