working together to create web performance standards

18
Working together to create Web Performance Standards Anderson Quach (Microsoft) Tony Gentilcore (Google)

Upload: justine-roy

Post on 31-Dec-2015

34 views

Category:

Documents


1 download

DESCRIPTION

Working together to create Web Performance Standards. Anderson Quach (Microsoft) Tony Gentilcore (Google). We’ll answer. What is the Web Performance Working Group? Why is real-world measurement challenging? What works today? What’s next?. Working Group: http://www.w3.org/2010/webperf/. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Working together to create Web Performance Standards

Working together to create Web Performance Standards

Anderson Quach (Microsoft)Tony Gentilcore (Google)

Page 2: Working together to create Web Performance Standards

We’ll answerWhat is the Web Performance Working

Group?

Why is real-world measurement challenging?

What works today?

What’s next?

Working Group: http://www.w3.org/2010/webperf/

Page 3: Working together to create Web Performance Standards

Measuring real-world performance

Page 4: Working together to create Web Performance Standards

Measuring performance todayStandard way to measure latency across

browsersNo way to measure network latency from

JavaScriptServer-side measures lack complete picture

Page 5: Working together to create Web Performance Standards

Resources from HTML : Resource Timing

Web standards to measure performanceHTML

document : Navigation Timing

Interactive scenarios : User Timing

hyperlink

Page 6: Working together to create Web Performance Standards

Challenges with providing performance informationKeeping end-users safe w.r.t. privacy and

securityEfficient implementation in the browserUseful information to assess and diagnose

performance issues

Page 7: Working together to create Web Performance Standards

Navigation Timing

Page 8: Working together to create Web Performance Standards

Navigation Timingwindow.performancenavigation – describes the type of

browsing and browsing activitytiming – the time taken to fetch and load

the HTML documentwindow.performance.timing;

Specification: http://test.w3.org/webperf/specs/NavigationTiming/

Page 9: Working together to create Web Performance Standards

What’s next?

Page 10: Working together to create Web Performance Standards

The Navigation Timing “gap”

Page 11: Working together to create Web Performance Standards

Resource Timing: filling in the gapDetailed timing for resources used by the page

redirectStart/EndfetchStartdomainLookupStart/EndconnectStart/EndrequestStart/EndresponseStart/EndloadEventStart/End

Identify slow loading resources of any typeXHR, CSS, CSS Images, <script>, <img>, <object>,<frame>, <iframe>, <embed>, <audio>, <video>

Specification: http://test.w3.org/webperf/specs/ResourceTiming/

Page 12: Working together to create Web Performance Standards

After the load

Page 13: Working together to create Web Performance Standards

User Timing: timing interactive apps

Simple interface to high-precision timing

mark(“open_email”);

Standard location for analytics scripts and dev tools

getMarks();> { open_email: 1299128230553 }

Specification: http://test.w3.org/webperf/specs/UserTiming/

Page 14: Working together to create Web Performance Standards

Measure painting: a stretch goalGive web apps better insight into when

content appears on the screen

Allow web apps to determine frame rate for animations

Work within security and performance constraints

Page 15: Working together to create Web Performance Standards

Spare the CPU

Page 16: Working together to create Web Performance Standards

Visibility, Yielding, Painting Allow web app to know if it is in the

background so it can be more efficientPoll less frequentlyPause animationsStop updates

Allow true zero-duration yields

Avoid animating faster than paints can keep up

Page 17: Working together to create Web Performance Standards

Q & Amailto: [email protected]

Page 18: Working together to create Web Performance Standards

ResourcesDownload and try it out

Latest version of Microsoft IE9 www.microsoft.com/ie9 Latest Google Chrome Beta

http://www.google.com/landing/chrome/beta/ Demos

http://ie.microsoft.com/testdrive/Performance/msPerformance/Default.html

http://webtimingdemo.appspot.com/ W3C resources

Working Group http://www.w3.org/2010/webperf/ Navigation Timing

http://test.w3.org/webperf/specs/NavigationTiming/ Resource Timing

http://test.w3.org/webperf/specs/ResourceTiming/ User Timing http://test.w3.org/webperf/specs/UserTiming/