浏览器渲染与WEB前端开发
nwind
Outline
• 百度Web前端研发部
• HTML布局无处不在
• 渲染引擎
• 浏览器
浏览器渲染与web前端开发
FrontEnd
Web前端研发部
• 负责百度各产品线前端的开发、优化
• html、css、javascript、flash、php
百度视频
内部平台
Outline
• 百度Web前端研发部
• HTML布局无处不在
• 渲染引擎
• 浏览器
当CSS和HTML越来越丰富时...
HTML布局将无处不在
• 悄悄融入到各种桌面应用中
• 成为程序的插件
• 本地应用
• 各种其它设备...
嵌入到桌面应用
Widget
Smartphone Apps using the
Web Standards you already know
User Interface Everywhere using the
Web Standards you already know
Outline
• 百度Web前端研发部
• HTML布局无处不在
• 渲染引擎
• 浏览器
Webkit engine
WebKit渲染引擎
• is an engine, not a browser
• forked from KHTML
• 10% market share
WebKit begins where the chrome ends
http://webkit.org/blog/101/back-to-basics/
What uses WebKit
WebKit engine features
• standards compliance (css3, html5)
• performance
• clear, maintainable code
WebKit Components
• WebKit
• front-end layer, gtk/mac/qt/win/wx
• WebCore
• rendering, layout, painting...
• JavaScriptCore
• JavaScript engine (interpreter)
WebKit API
Application
WebCore
WebKit
JavaScriptCore
WebKit
API Boundary
UI Process
WebKit API
• 封装对webcore的调用
• 为webcore提供平台相关的操作
• 网络调用
• 绘图
• 监听用户交互
WebKit API
• mac
• qt
• gtk
• win
• wx
• chromium
• ...
WebKit mac
#include  <WebKit/WebKit.h>
WebKit development
• WebView WebFrame WebPreferences...
• Delegate
• DOM API
• using javascript
WebView API
• loadRequest()
• reload()
• goBack() / goForward()
• makeTextLarger() / makeTextSmaller()
Delegate
• WebFrameLoad
• didFailLoadWithError:forFrame
• WebPolicy
• decidePolicyForNewWindowAction
• WebResourceLoad
• didFinishLoading
• WebUI
DOM API
• W3C DOM Specification
• [[doc documentElement] innerHTML]
Call Javascript
• id	
  win	
  =	
  [webView	
  windowScriptObject];
• [win	
  evaluateWebScript:@"location.href"];
WebKit demo
WebKit Components
• WebKit
• front-end layer, gtk/mac/qt/win/wx
• WebCore
• rendering, layout, painting...
• JavaScriptCore
• JavaScript engine (interpreter)
WebCore
Parsing
Loading
Painting
Rendering
Script Execution
Layout
Style Resolution
Event Handling
Process
Loading
Parsing
Rending
layout
Painting
Loading
• 网络, 本地
• 分为两种类型
• Frames 网页
• Resources 其它
Loading is complexity
• 调用网络接口
• 加载 解析 执行, 错综复杂的关系
• 各种Cache机制
• HTTP
• 前进后退
http://webkit.org/blog/1188/how-webkit-loads-a-web-page/
Process
Loading
Parsing
Rending
layout
Painting
Parsing
• 状态机
• 构建DOM树
• 建立节点的对象
• 各种出错情况处理
DOM Tree
Process
Loading
Parsing
Rending
layout
Painting
Rending
• 依据Selector计算出节点的样式
• 生成Render Tree
• 需等待CSS加载
• RenderObject.h
Selector matching
Render Tree
• 只和展现相关
• 不关心display:none的DOM节点
• 将节点和样式关联起来
• 生成一些匿名节点
• 文字折行
Render Tree
Process
Loading
Parsing
Rending
layout
Painting
Layout
• 从根节点递归调用render对象的layout方法
• 只有input框从子结点开始渲染
• 计算元素的大小及位置等信息
Process
Loading
Parsing
Rending
layout
Painting
Painting
• 从root元素开始
• 从底至顶一层层绘图
• 调用2D图形API
overview (Gecko)
Event Handling
• 监听鼠标键盘事件
• 找到对应的元素(hitTest)
• 设置需要layout的标志位
• layout (队列, 异步执行)
• painting
Event Example
• -­‐[WebHTMLView	
  mouseUp:]
• WebCore::EventHandler::mouseUp
• WebCore::EventHandler::handleMouseReleaseEvent
• WebCore::EventHandler::prepareMouseEvent
• WebCore::Document::preperMouseEvent
• WebCore::RenderLayer::hitTest
• WebCore::RenderLayer::hitTestLayer
Event System (Mac)
Dynamic changes
el.style.left = "2px";
el.style.left = el.offsetLeft + "px";
Outline
• 百度Web前端研发部
• HTML布局无处不在
• 渲染引擎
• 浏览器
Browsers
Browser features
起始页
tab管理
崩溃恢复
地址栏增强
广告拦截
超级拖拽
快速查找
下载管理
自动升级
防假死
智能填表
代理切换
屏幕截图
收藏管理
鼠标手势
安全检测
进程管理
皮肤
缩放
错误页
安全检测
在线升级
插件机制
账号绑定
快捷键
隐私浏览
清除纪录
基本实现方法
• 监听渲染引擎提供的事件/hook
• 使用渲染引擎提供的DOM API
• 如鼠标手势
• 有些功能可以直接用html
• 如起始页
Chrome [OS]
Chrome
• Multi-process
• WebKit glue
• Skia
• Network
• Extension
• Update
Multi-process Architecture
• browser as an operating system
• asynchronous
• backing store
• sandbox
Multi-process Architecture
Application (Host Process
WebKit
WebCore
JavaScriptCore
API Boundary
UI Process
Application (Render Process)
Web Process
Chrome multi-process architecture
IPC
IPC
Other Process Model
• WebKit2
• IE8 “Loosely-Coupled IE”, “Gazelle”
• Firefox “Electrolysis”
WebKit2
• build in separate process
• no-blocking API
WebKit2
Application
WebKit (Web Process)
WebCore
JavaScriptCore
API Boundary
UI Process
WebKit (UI Process)
Web Process
WebKit WebKit2 Chrome
Application
WebKit
WebCore
JavaScriptCore
UI Process
Application
Web Process
Application
WebKit
WebCore
JavaScriptCore
UI Process
WebKit
Web Process
Application
WebKit
WebCore
JavaScriptCore
UI Process
WebKit glue
• "WebKit embedding layer"
• 避免依赖各种GUI框架
• Chrome与WebKit的桥梁
Chrome layers
Browser window
Tab contents
Render host
Renderer
WebKit glue
WebKitWebKit port
Skia
• GDI is not enough
• GDI+ is no longer support and is slow
• in-house solution
• use GDI for text
Network
• Rewrite Network Stack
• DNS Prefetching
• SPDY
Extensions
• can use javascript
• html5, css3
• donʼt need restart
• NPAPI
• not sandbox
• Native Client
SandBox
Firefox (Gecko)
Firefox (Gecko)
• not just a browser
• mail, newsgroup, web design tool...
• complexity
• XPCOM, XUL
• mozilla 2
Komodo
Thunderbird
Internet Explorer (Trident)
IE shells (MSHTML)
• 360安全浏览器
• 基于theworld, 基本上就是换了个肤
• 支持多进程模式
• 遨游浏览器
• 细节功能很多, UI不错
• 搜狗高速浏览器
• 全网加速
• webkit/IE双引擎
• HTML5 CSS3 ES5 SVG
• GPU
• Chakra inside
References
http://trac.webkit.org/wiki/
http://www.chromium.org/developers/
http://dbaron.org/talks/
http://trac.webkit.org/wiki/WebKit2
欢迎加入百度WEB前端研发部!
http://hr.baidu.com/www/campusPro.action?l=7
搜索研发部_Web前端研发工程师(2011校园招聘)
http://www.baiduux.com
Thank you

More Related Content

PPTX
Blazor 與 Radzen 同行
PPTX
Angular 7 全新功能探索 (Angular Taiwan 2018)
PDF
深入浅出浏览器硬件加速
PDF
高工的个人发展规划
PDF
Javascript engine performance
PDF
JavaScript Patterns
PDF
D2分享:让前端开发更高效
PPT
Where to meet pretties
Blazor 與 Radzen 同行
Angular 7 全新功能探索 (Angular Taiwan 2018)
深入浅出浏览器硬件加速
高工的个人发展规划
Javascript engine performance
JavaScript Patterns
D2分享:让前端开发更高效
Where to meet pretties

Viewers also liked (9)

PDF
Baidu Map API Introduction
PPT
知道你为什么找不到好工作吗?
PDF
Baidu前端交流会-百度基础平台分享
PPT
Xaml Tutorial By Allan
PDF
Catch a spider monkey
PDF
HTTP2:新的机遇与挑战
PPTX
Browser Wars Episode 1: The Phantom Menace
PDF
Web前端性能优化 2014
PDF
Virtual machine and javascript engine
Baidu Map API Introduction
知道你为什么找不到好工作吗?
Baidu前端交流会-百度基础平台分享
Xaml Tutorial By Allan
Catch a spider monkey
HTTP2:新的机遇与挑战
Browser Wars Episode 1: The Phantom Menace
Web前端性能优化 2014
Virtual machine and javascript engine
Ad

Similar to 浏览器渲染与web前端开发 (20)

PPTX
使用 TypeScript 駕馭 Web 世界的脫韁野馬:以 Angular 2 開發框架為例
PPTX
Android 4-app
PDF
Berserk js
PDF
以Code igniter為基礎的網頁前端程式設計
PPTX
ASP.NET Core 3.0 新功能
PPTX
從頭打造 C#、.NET 與 ASP.NET Core 開發環境
PPTX
一步一步开发Html5 mobile apps
PPT
Web端交互逻辑抽象的实践—运营h5页面和逻辑自动生成利器
PPTX
Android快速发布&持续集成
PPTX
前端開發學習簡介
PPTX
Html5移动网站开发实践
PDF
美团前端架构简介
PPTX
前端性能测试
PDF
20120516 axure rp prototype design outline
PDF
Responsive Web UI Design
PDF
使用Big pipe提升浏览速度 wk_velocity
PDF
使用Bigpipe提升浏览速度
PDF
使用Big pipe提升浏览速度v2
PDF
Unreal Open Day 2017 Optimize in Mobile UI
PPT
Html5和css3入门
使用 TypeScript 駕馭 Web 世界的脫韁野馬:以 Angular 2 開發框架為例
Android 4-app
Berserk js
以Code igniter為基礎的網頁前端程式設計
ASP.NET Core 3.0 新功能
從頭打造 C#、.NET 與 ASP.NET Core 開發環境
一步一步开发Html5 mobile apps
Web端交互逻辑抽象的实践—运营h5页面和逻辑自动生成利器
Android快速发布&持续集成
前端開發學習簡介
Html5移动网站开发实践
美团前端架构简介
前端性能测试
20120516 axure rp prototype design outline
Responsive Web UI Design
使用Big pipe提升浏览速度 wk_velocity
使用Bigpipe提升浏览速度
使用Big pipe提升浏览速度v2
Unreal Open Day 2017 Optimize in Mobile UI
Html5和css3入门
Ad

浏览器渲染与web前端开发