├── .csslintrc ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlocalize.yml ├── .gitmodules ├── .jscsrc ├── .jshintrc ├── .nvmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── WebFu.code-workspace ├── app.yaml ├── appengine_config.py ├── appengine_main.py ├── devsiteHelper.py ├── devsiteIndex.py ├── devsitePage.py ├── devsiteParseHTML.py ├── devsiteParseMD.py ├── devsiteParseYAML.py ├── gae ├── 404.tpl ├── 500.tpl ├── framebox.tpl ├── images │ ├── credentials-spinner.svg │ └── redesign-14 │ │ ├── button-down-black.svg │ │ ├── button-down-grey.svg │ │ └── nav-status-experimental.svg ├── includes │ ├── analytics.html │ ├── announcement-banner.html │ ├── article-license.html │ ├── devsite-collapsible-section.html │ ├── devsite-footer-linkboxes.html │ ├── devsite-footer-promos.html │ ├── devsite-footer-utility.html │ ├── devsite-top-logo-row-wrapper-wrapper.html │ ├── head-embedded-styles.html │ ├── landing-page-content-row.html │ ├── landing-page-content.html │ ├── lower-tabs.html │ ├── page-head.html │ ├── page-nav-list.html │ ├── page-nav.html │ ├── ratings-container.html │ ├── section-nav.html │ ├── survey.html │ └── upper-tabs.html ├── lib │ ├── Markdown-2.6.7-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ └── top_level.txt │ └── markdown │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __version__.py │ │ ├── blockparser.py │ │ ├── blockprocessors.py │ │ ├── extensions │ │ ├── __init__.py │ │ ├── abbr.py │ │ ├── admonition.py │ │ ├── attr_list.py │ │ ├── codehilite.py │ │ ├── def_list.py │ │ ├── extra.py │ │ ├── fenced_code.py │ │ ├── footnotes.py │ │ ├── headerid.py │ │ ├── meta.py │ │ ├── nl2br.py │ │ ├── sane_lists.py │ │ ├── smart_strong.py │ │ ├── smarty.py │ │ ├── tables.py │ │ ├── toc.py │ │ └── wikilinks.py │ │ ├── inlinepatterns.py │ │ ├── odict.py │ │ ├── postprocessors.py │ │ ├── preprocessors.py │ │ ├── serializers.py │ │ ├── treeprocessors.py │ │ └── util.py ├── page-article.html ├── page-base.html ├── page-landing.html ├── robots.txt ├── scripts │ ├── devsite-dev.js │ ├── footer-closure.js │ ├── framebox.js │ ├── jquery-2.1.1.min.js │ ├── jquery-bundle.js │ ├── prettify-bundle.js │ ├── script_foot.js │ └── script_foot_closure.js └── styles │ ├── devsite-google-blue.css │ ├── devsite-orange.css │ └── empty.css ├── gulp-tasks ├── build.js ├── claat-export.js ├── puppeteer │ └── build_docs.js ├── reference-docs │ ├── build-js-docs.js │ ├── build-reference-docs.js │ ├── get-latest-tags.js │ └── get-source-code.js ├── remark-lint-tests │ ├── check-headings.js │ ├── check-html.js │ ├── check-images.js │ └── check-links.js ├── test.js ├── tests │ ├── bookYaml.js │ ├── commonTagsJson.js │ ├── commonTypos.js │ ├── contributorsYaml.js │ ├── glossaryYaml.js │ ├── helpers.js │ ├── lintJavaScript.js │ ├── projectYaml.js │ ├── redirectsYaml.js │ ├── validateCommonTyposFile.js │ ├── validateContent.js │ ├── validateFilename.js │ ├── validateGeneric.js │ ├── validateHtml.js │ ├── validateJavaScript.js │ ├── validateJson.js │ ├── validateMarkdown.js │ ├── validateMedia.js │ ├── validatePermissions.js │ └── validateYaml.js ├── wfCodeLabHelper.js ├── wfContributors.js ├── wfHelper.js ├── wfRegEx.js ├── wfTemplateHelper.js ├── wfUpdatedOn.js ├── wfYouTubeShows.js └── workbox │ ├── workbox-generate-includes.js │ ├── workbox-no-index.js │ └── workbox.js ├── gulpfile.js ├── package.json ├── src ├── content │ ├── ar │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── de │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── en │ │ ├── _book.yaml │ │ ├── _footer.yaml │ │ ├── _index.yaml │ │ ├── _project.yaml │ │ ├── _redirects.yaml │ │ ├── _shared │ │ │ ├── contributors │ │ │ │ └── _generated.md │ │ │ ├── feedback.html │ │ │ ├── helpful.html │ │ │ ├── machine-translation-start.html │ │ │ ├── multichoice.html │ │ │ ├── related-guides │ │ │ │ ├── heading.html │ │ │ │ └── service-workers.html │ │ │ ├── rss-widget-fundamentals.html │ │ │ ├── rss-widget-shows.html │ │ │ ├── rss-widget-tools.html │ │ │ ├── rss-widget-updates.html │ │ │ ├── sample.html │ │ │ ├── translation-end.html │ │ │ ├── translation-out-of-date.html │ │ │ ├── udacity │ │ │ │ ├── ud811.html │ │ │ │ ├── ud860.html │ │ │ │ ├── ud882.html │ │ │ │ ├── ud884.html │ │ │ │ ├── ud890.html │ │ │ │ ├── ud891.html │ │ │ │ ├── ud892.html │ │ │ │ ├── ud893.html │ │ │ │ └── ud899.html │ │ │ └── webxr-status.html │ │ ├── _translation.yaml │ │ ├── android │ │ │ └── _redirects.yaml │ │ ├── chromium-blog │ │ │ └── intent-to-infographic.jpg │ │ ├── fundamentals │ │ │ ├── _redirects.yaml │ │ │ └── images │ │ │ │ ├── cred-mgt.png │ │ │ │ ├── ic_home_black_48dp.png │ │ │ │ ├── ic_https_black_48dp.png │ │ │ │ ├── ic_important_devices_black_48dp.png │ │ │ │ ├── ic_thumb_up_black_48dp.png │ │ │ │ ├── pay-req.png │ │ │ │ ├── web-comp.png │ │ │ │ └── web-push-notification.png │ │ ├── ilt │ │ │ └── _redirects.yaml │ │ ├── images │ │ │ ├── AMP-GIF-2x.gif │ │ │ ├── PWA-GIF-2x.gif │ │ │ ├── cds18-banner-img.png │ │ │ ├── cds20-art.png │ │ │ ├── cds20-wide.png │ │ │ ├── cds21-art.jpg │ │ │ ├── common │ │ │ │ ├── add-to-hs-16x9.png │ │ │ │ ├── push-notification-16x9.png │ │ │ │ └── webcomponents-logo.png │ │ │ ├── content-https-2x.jpg │ │ │ ├── content-performance-2x.jpg │ │ │ ├── content-responsive-2x.jpg │ │ │ ├── contributors │ │ │ │ ├── abdshomad.jpg │ │ │ │ ├── adamargyle.jpg │ │ │ │ ├── addyosmani.jpg │ │ │ │ ├── adrianajara.jpg │ │ │ │ ├── agektmr.jpg │ │ │ │ ├── alexdanilo.jpg │ │ │ │ ├── alexshalamov.jpg │ │ │ │ ├── aliceboxhall.jpg │ │ │ │ ├── andismith.jpg │ │ │ │ ├── andreban.jpg │ │ │ │ ├── arthurevans.jpg │ │ │ │ ├── beaufortfrancois.jpg │ │ │ │ ├── bokan.jpg │ │ │ │ ├── borissmus.jpg │ │ │ │ ├── brendankenny.jpg │ │ │ │ ├── captainpangyo.jpg │ │ │ │ ├── cbrand.jpg │ │ │ │ ├── chriswilson.jpg │ │ │ │ ├── cwdoh.jpg │ │ │ │ ├── dalecurtis.jpg │ │ │ │ ├── developit.jpg │ │ │ │ ├── dgash.jpg │ │ │ │ ├── dmitryskripunov.jpg │ │ │ │ ├── dtapuska.jpg │ │ │ │ ├── durgapandey.jpg │ │ │ │ ├── emilaeklund.jpg │ │ │ │ ├── emilystark.jpg │ │ │ │ ├── ericbidelman.jpg │ │ │ │ ├── ericlawrence.jpg │ │ │ │ ├── ewagasperowicz.jpg │ │ │ │ ├── fawazm.jpg │ │ │ │ ├── flaviocopes.jpg │ │ │ │ ├── franktang.jpg │ │ │ │ ├── glenshires.jpg │ │ │ │ ├── greenido.jpg │ │ │ │ ├── heathermahan.jpg │ │ │ │ ├── henrylim.jpg │ │ │ │ ├── hongchanchoi.jpg │ │ │ │ ├── housseindjirdeh.jpg │ │ │ │ ├── iamakulov.jpg │ │ │ │ ├── ianbarber.jpg │ │ │ │ ├── ilmariheikkinen.jpg │ │ │ │ ├── ilyagrigorik.jpg │ │ │ │ ├── ingvarstepanyan.jpg │ │ │ │ ├── jackfranklin.jpg │ │ │ │ ├── jacquerie.jpg │ │ │ │ ├── jakearchibald.jpg │ │ │ │ ├── janscheffler.jpg │ │ │ │ ├── jasonpark.jpg │ │ │ │ ├── jbingham.jpg │ │ │ │ ├── jbnicolai.jpg │ │ │ │ ├── jecelynyeen.jpg │ │ │ │ ├── jeffposnick.jpg │ │ │ │ ├── jennygove.jpg │ │ │ │ ├── jeokrang.jpg │ │ │ │ ├── jeremywagner.jpg │ │ │ │ ├── jobay.jpg │ │ │ │ ├── johyphenel.jpg │ │ │ │ ├── jonathangarbee.jpg │ │ │ │ ├── josephmedley.jpg │ │ │ │ ├── justinfagnani.jpg │ │ │ │ ├── katjackson.jpg │ │ │ │ ├── kaycebasques.jpg │ │ │ │ ├── kenchris.jpg │ │ │ │ ├── kinukoyasuda.jpg │ │ │ │ ├── kosamari.jpg │ │ │ │ ├── koto.jpg │ │ │ │ ├── lucaberton.jpg │ │ │ │ ├── majidvp.jpg │ │ │ │ ├── mathiasbynens.jpg │ │ │ │ ├── mattgaunt.jpg │ │ │ │ ├── maudnalpas.jpg │ │ │ │ ├── mcasas.jpg │ │ │ │ ├── mco.jpg │ │ │ │ ├── megginkearney.jpg │ │ │ │ ├── mikemahemoff.jpg │ │ │ │ ├── mikewest.jpg │ │ │ │ ├── mkazi.jpg │ │ │ │ ├── mlamouri.jpg │ │ │ │ ├── mscales.jpg │ │ │ │ ├── mustafa.jpg │ │ │ │ ├── mychaelgo.jpg │ │ │ │ ├── no-photo.jpg │ │ │ │ ├── no-photo.svg │ │ │ │ ├── nsatragno.jpg │ │ │ │ ├── nurinamu.jpg │ │ │ │ ├── orkon.jpg │ │ │ │ ├── owencm.jpg │ │ │ │ ├── patrickhulce.jpg │ │ │ │ ├── paulirish.jpg │ │ │ │ ├── paulkinlan.jpg │ │ │ │ ├── paullewis.jpg │ │ │ │ ├── pavoldrotar.jpg │ │ │ │ ├── pbakaus.jpg │ │ │ │ ├── peconn.jpg │ │ │ │ ├── petelepage.jpg │ │ │ │ ├── philipwalton.jpg │ │ │ │ ├── pjmclachlan.jpg │ │ │ │ ├── plegner.jpg │ │ │ │ ├── pozdnyakov.jpg │ │ │ │ ├── reillyg.jpg │ │ │ │ ├── renatomangini.jpg │ │ │ │ ├── robdodson.jpg │ │ │ │ ├── rowanmerewood.jpg │ │ │ │ ├── rsolomakhin.jpg │ │ │ │ ├── rviscomi.jpg │ │ │ │ ├── sadym.jpg │ │ │ │ ├── sahel.jpg │ │ │ │ ├── samchen.jpg │ │ │ │ ├── samdutton.jpg │ │ │ │ ├── samthorogood.jpg │ │ │ │ ├── sethladd.jpg │ │ │ │ ├── sgomes.jpg │ │ │ │ ├── sieke.jpg │ │ │ │ ├── sigurds.jpg │ │ │ │ ├── sunyunjia.jpg │ │ │ │ ├── surma.jpg │ │ │ │ ├── swengineer.jpg │ │ │ │ ├── taylorsavage.jpg │ │ │ │ ├── tdresser.jpg │ │ │ │ ├── thomassteiner.jpg │ │ │ │ ├── tomgreenaway.jpg │ │ │ │ ├── tomwiltzius.jpg │ │ │ │ ├── tvanderlippe.jpg │ │ │ │ ├── umarhansa.jpg │ │ │ │ ├── victorcostan.jpg │ │ │ │ ├── vinamratasingal.jpg │ │ │ │ ├── wangyu.jpg │ │ │ │ ├── wayouliu.jpg │ │ │ │ ├── wdenniss.jpg │ │ │ │ ├── yoavweiss.jpg │ │ │ │ ├── yoichiro.jpg │ │ │ │ ├── yvoschaap.jpg │ │ │ │ └── zkoch.jpg │ │ │ ├── cr100-promo.png │ │ │ ├── devtools-icon.svg │ │ │ ├── favicon.ico │ │ │ ├── gitlocalize_image0.png │ │ │ ├── gitlocalize_image1.png │ │ │ ├── hero-2x.png │ │ │ ├── landing-crdev-16x9.png │ │ │ ├── landing-webdev-16x9.png │ │ │ ├── md-icons │ │ │ │ ├── assignment-short.png │ │ │ │ ├── devices-short.png │ │ │ │ ├── home-short.png │ │ │ │ ├── ic_360_black_48dp.svg │ │ │ │ ├── ic_add_to_home_screen_black_24dp.svg │ │ │ │ ├── ic_assignment_black_24px.svg │ │ │ │ ├── ic_book_black_24px.svg │ │ │ │ ├── ic_border_style_black_24px.svg │ │ │ │ ├── ic_code_black_24px.svg │ │ │ │ ├── ic_devices_black_48dp.svg │ │ │ │ ├── ic_done_black_24px.svg │ │ │ │ ├── ic_explore_black_24px.svg │ │ │ │ ├── ic_home_black_48dp.png │ │ │ │ ├── ic_https_black_48dp.png │ │ │ │ ├── ic_image_black_48dp.svg │ │ │ │ ├── ic_important_devices_black_48dp.png │ │ │ │ ├── ic_important_devices_black_48dp.svg │ │ │ │ ├── ic_insert_photo_black_48dp.svg │ │ │ │ ├── ic_monetization_on_black_48dp.svg │ │ │ │ ├── ic_movie_creation_black_48dp.svg │ │ │ │ ├── ic_navigation_black_48dp.svg │ │ │ │ ├── ic_offline_bolt_black_48dp.svg │ │ │ │ ├── ic_offline_pin_black_48dp.svg │ │ │ │ ├── ic_phone_android_black_48dp.svg │ │ │ │ ├── ic_place_black_48dp.svg │ │ │ │ ├── ic_question_answer_black_48dp.svg │ │ │ │ ├── ic_rss_feed_black_48dp.svg │ │ │ │ ├── ic_screen_rotation_black_48dp.svg │ │ │ │ ├── ic_search_black_48dp.svg │ │ │ │ ├── ic_thumb_up_black_48dp.png │ │ │ │ ├── ic_thumb_up_black_48dp.svg │ │ │ │ ├── ic_touch_app_black_48dp.svg │ │ │ │ ├── ic_web_black_48dp.svg │ │ │ │ ├── ic_whatshot_black_48dp.svg │ │ │ │ ├── image-short.png │ │ │ │ ├── important-devices-short.png │ │ │ │ ├── lock-short.png │ │ │ │ ├── money-square.png │ │ │ │ ├── movie-short.png │ │ │ │ ├── offline-bolt-short.png │ │ │ │ ├── offline-pin-short.png │ │ │ │ ├── q-and-a-short.png │ │ │ │ ├── search-short.png │ │ │ │ ├── thumbs-up-short.png │ │ │ │ ├── touch-short.png │ │ │ │ ├── web-short.png │ │ │ │ └── whats-hot-short.png │ │ │ ├── powered-by-translate.svg │ │ │ ├── pwa-e-16x9.gif │ │ │ ├── pwa-f-16x9.gif │ │ │ ├── pwa-gif-flipkart-250.gif │ │ │ ├── pwa-i-16x9.gif │ │ │ ├── pwa-r-16x9.gif │ │ │ ├── social-webfu-16x9.png │ │ │ ├── tool_icon.png │ │ │ ├── wd-live-wide.png │ │ │ ├── wd-live.png │ │ │ ├── web-dev-logo.png │ │ │ ├── web-fundamentals-icon144x144.png │ │ │ ├── web-fundamentals-icon192x192.png │ │ │ ├── web-fundamentals-icon36x36.png │ │ │ ├── web-fundamentals-icon48x48.png │ │ │ ├── web-fundamentals-icon72x72.png │ │ │ └── web-fundamentals-icon96x96.png │ │ ├── manifest.json │ │ ├── progressive-web-apps │ │ │ ├── _redirects.yaml │ │ │ └── images │ │ │ │ ├── app-menu.png │ │ │ │ ├── app-window-elements.png │ │ │ │ ├── device-usage.png │ │ │ │ ├── dpwa-resp-1.png │ │ │ │ ├── dpwa-resp-2.png │ │ │ │ ├── dpwa-resp-3.png │ │ │ │ ├── dpwa-resp-4.png │ │ │ │ ├── pwa-engaging.png │ │ │ │ ├── pwa-fast.png │ │ │ │ ├── pwa-intro.png │ │ │ │ ├── pwa-reliable.png │ │ │ │ └── spotify-screenshot.jpg │ │ ├── showcase │ │ │ └── _redirects.yaml │ │ ├── shows │ │ │ ├── _book.yaml │ │ │ ├── _redirects.yaml │ │ │ ├── blinkon │ │ │ │ ├── 4 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── blink-allocator.md │ │ │ │ │ ├── blink-houdini.md │ │ │ │ │ ├── blink-layout.md │ │ │ │ │ ├── blink-lightning.md │ │ │ │ │ ├── blink-moving-security-forward.md │ │ │ │ │ ├── blink-q-and-a.md │ │ │ │ │ ├── blink-service-worker.md │ │ │ │ │ ├── blink-skia.md │ │ │ │ │ ├── blink-slimming-paint.md │ │ │ │ │ └── state-of-blink.md │ │ │ │ ├── 5 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── blinkon-5-blink-architecture-layering.md │ │ │ │ │ ├── blinkon-5-blink-memory-reduction.md │ │ │ │ │ ├── blinkon-5-chrome-memory-infra.md │ │ │ │ │ ├── blinkon-5-hittin-the-rail.md │ │ │ │ │ ├── blinkon-5-houdini-task-force.md │ │ │ │ │ ├── blinkon-5-lightning-talks.md │ │ │ │ │ ├── blinkon-5-paint-and-compositing-deep-dive.md │ │ │ │ │ ├── blinkon-5-perf-insights-rail-happiness.md │ │ │ │ │ ├── blinkon-5-progressive-web-apps-project-fizz.md │ │ │ │ │ ├── blinkon-5-qa-panel.md │ │ │ │ │ ├── blinkon-5-state-of-blink.md │ │ │ │ │ ├── blinkon-5-text-layout-overview.md │ │ │ │ │ ├── blinkon-5-v8-garbage-collection.md │ │ │ │ │ └── blinkon-5-web-assembly.md │ │ │ │ ├── 6 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── blinkon-6-day-1-talk-1-state-of-web-platform.md │ │ │ │ │ ├── blinkon-6-day-1-talk-2-ignition-an-interpreter-for-v8.md │ │ │ │ │ ├── blinkon-6-day-1-talk-3-3rd-party-content.md │ │ │ │ │ ├── blinkon-6-day-1-talk-4-houdini-and-the-future-of-web.md │ │ │ │ │ ├── blinkon-6-day-1-talk-5-web-platform-predictability.md │ │ │ │ │ ├── blinkon-6-day-1-talk-6-feeling-fast-for-our-users-building-a-smarter-engine.md │ │ │ │ │ ├── blinkon-6-day-1-talk-7-lightning-talks.md │ │ │ │ │ ├── blinkon-6-day-2-talk-1-headless-chrome.md │ │ │ │ │ ├── blinkon-6-day-2-talk-2-client-side-performance-from-the-perspective-of-a-developer.md │ │ │ │ │ ├── blinkon-6-day-2-talk-3-blink-onion-soup.md │ │ │ │ │ ├── blinkon-6-day-2-talk-4-real-world-javascript-performance.md │ │ │ │ │ ├── blinkon-6-day-2-talk-5-v8-ecmascript-2015-and-beyond.md │ │ │ │ │ ├── blinkon-6-day-2-talk-6-how-we-measure-and-optimize-for-rail-in-v8s-gc.md │ │ │ │ │ └── blinkon-6-day-2-talk-7-qa-panel.md │ │ │ │ └── _toc.yaml │ │ │ ├── cds │ │ │ │ ├── 2013 │ │ │ │ │ ├── 60fps-layout-and-rendering.md │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── best-ux-patterns-for-mobile-web-apps.md │ │ │ │ │ ├── blink-behind-the-scenes.md │ │ │ │ │ ├── build-mobile-apps-with-chrome-webview.md │ │ │ │ │ ├── dart-for-the-modern-web-developer.md │ │ │ │ │ ├── develop-chrome-apps.md │ │ │ │ │ ├── devtools-for-mobile.md │ │ │ │ │ ├── got-ssl.md │ │ │ │ │ ├── instant-mobile-web-apps.md │ │ │ │ │ ├── keynote.md │ │ │ │ │ ├── leadership-panel.md │ │ │ │ │ ├── media-apis-for-the-web.md │ │ │ │ │ ├── multi-device-accessibility.md │ │ │ │ │ ├── network-connectivity-optional.md │ │ │ │ │ ├── optimizing-network-performance.md │ │ │ │ │ ├── optimizing-your-workflow.md │ │ │ │ │ ├── polymer.md │ │ │ │ │ ├── portable-native-client.md │ │ │ │ │ └── tooling-techniques-for-perf-ninja.md │ │ │ │ ├── 2014 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── asking-for-super-powers.md │ │ │ │ │ ├── chrome-leadership-panel.md │ │ │ │ │ ├── closing-remarks.md │ │ │ │ │ ├── easy-composition-and-reuse-with-web-components.md │ │ │ │ │ ├── fundamentals-of-mobile-web-development.md │ │ │ │ │ ├── future-of-apps-panel.md │ │ │ │ │ ├── keynote.md │ │ │ │ │ ├── lets-build-some-apps-with-polymer.md │ │ │ │ │ ├── making-web-apps-appy.md │ │ │ │ │ ├── material-design-deconstructed.md │ │ │ │ │ ├── material-design-panel.md │ │ │ │ │ ├── performance-panel.md │ │ │ │ │ ├── polymer-state-of-the-union.md │ │ │ │ │ ├── the-applied-science-of-runtime-performance.md │ │ │ │ │ ├── the-jake-bits.md │ │ │ │ │ ├── tls-all-the-things.md │ │ │ │ │ ├── web-components-and-polymer-panel.md │ │ │ │ │ └── wicked-fast.md │ │ │ │ ├── 2015 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── accessibility-chrome-dev-summit-2015.md │ │ │ │ │ ├── asking-for-permission-respectful-opinionated-ui-chrome-dev-summit-2015.md │ │ │ │ │ ├── building-and-deploying-a-progressive-web-app-at-scale-with-flipkart-chrome-dev-summit-2015.md │ │ │ │ │ ├── building-progressive-web-apps-with-polymer-chrome-dev-summit-2015.md │ │ │ │ │ ├── deploying-https-the-green-lock-and-beyond-chrome-dev-summit-2015.md │ │ │ │ │ ├── developing-for-billions-chrome-dev-summit-2015.md │ │ │ │ │ ├── devtools-in-2015-authoring-to-the-max-chrome-dev-summit-2015.md │ │ │ │ │ ├── engaging-with-the-real-world-web-bluetooth-and-physical-web-chrome-dev-summit-2015.md │ │ │ │ │ ├── http2-101-chrome-dev-summit-2015.md │ │ │ │ │ ├── increase-engagement-with-web-push-notifications-chrome-dev-summit-2015.md │ │ │ │ │ ├── instant-loading-with-service-workers-chrome-dev-summit-2015.md │ │ │ │ │ ├── introduction-to-rail-chrome-dev-summit-2015.md │ │ │ │ │ ├── keynote-by-darin-fisher-vp-of-chrome-chrome-dev-summit-2015.md │ │ │ │ │ ├── leadership-panel-chrome-dev-summit-2015.md │ │ │ │ │ ├── owning-your-performance-rail-chrome-dev-summit-2015.md │ │ │ │ │ ├── polymer-state-of-the-union-chrome-dev-summit-2015.md │ │ │ │ │ ├── progressive-web-apps-chrome-dev-summit-2015.md │ │ │ │ │ ├── quantify-and-improve-real-world-rail-chrome-dev-summit-2015.md │ │ │ │ │ ├── rail-in-the-real-world-chrome-dev-summit-2015.md │ │ │ │ │ └── v8-performance-from-the-drivers-seat-chrome-dev-summit-2015.md │ │ │ │ ├── _toc.yaml │ │ │ │ └── index.md │ │ │ ├── designer-vs-developer │ │ │ │ ├── _toc.yaml │ │ │ │ ├── index.md │ │ │ │ └── podcast │ │ │ │ │ ├── DVDS1E01-creating-a-collaborative-environment.md │ │ │ │ │ ├── DVDS1E02-balancing-creativity-with-user-testing.md │ │ │ │ │ ├── DVDS1E03-Adopting-the-native-language-of-the-web.md │ │ │ │ │ ├── DVDS1E04-are-designers-born-or-made.md │ │ │ │ │ ├── DVDS1E05-who-is-responsible-for-design.md │ │ │ │ │ ├── DVDS1E06-are-design-tools-fit-for-purpose.md │ │ │ │ │ ├── DVDS2E01-becoming-a-creative-coder.md │ │ │ │ │ ├── DVDS2E02-designing-a-great-performance.md │ │ │ │ │ ├── DVDS2E03-improving-your-creative-confidence.md │ │ │ │ │ ├── DVDS2E04-learn-how-to-design.md │ │ │ │ │ ├── DVDS2E05-designing-for-the-next-billion-users.md │ │ │ │ │ ├── DVDS2E06-how-the-web-can-compete-with-native.md │ │ │ │ │ ├── DVDS3E01-designing-for-css-grid.md │ │ │ │ │ ├── DVDS3E02-designing-for-standards.md │ │ │ │ │ ├── DVDS3E03-getting-a-start-in-industry.md │ │ │ │ │ ├── DVDS3E04-creative-ways-of-prototyping.md │ │ │ │ │ ├── DVDS3E05-using-the-gestalt-principles.md │ │ │ │ │ ├── DVDS3E06-how-to-design-a-vr-game.md │ │ │ │ │ ├── DVDS3E07-Designing-for-offline.md │ │ │ │ │ ├── DVDS4E01-how-we-designed-chrome.md │ │ │ │ │ ├── DVDS4E02-ux-research-usability-testingy.md │ │ │ │ │ ├── DVDS4E03-material-design-components.md │ │ │ │ │ ├── DVDS4E04-prototyping-motion.md │ │ │ │ │ ├── DVDS4E05-using-autocomplete.md │ │ │ │ │ ├── DVDS4E06-pwas-firebase.md │ │ │ │ │ └── images │ │ │ │ │ ├── dvd-s01-e01-cover-large.jpg │ │ │ │ │ ├── dvd-s01-e01-cover.jpg │ │ │ │ │ ├── dvd-s01-e02-cover-large.jpg │ │ │ │ │ ├── dvd-s01-e02-cover.jpg │ │ │ │ │ ├── dvd-s01-e03-cover-large.jpg │ │ │ │ │ ├── dvd-s01-e03-cover.jpg │ │ │ │ │ ├── dvd-s01-e04-cover-large.jpg │ │ │ │ │ ├── dvd-s01-e04-cover.jpg │ │ │ │ │ ├── dvd-s01-e05-cover-large.jpg │ │ │ │ │ ├── dvd-s01-e05-cover.jpg │ │ │ │ │ ├── dvd-s01-e06-cover-large.jpg │ │ │ │ │ ├── dvd-s01-e06-cover.jpg │ │ │ │ │ ├── dvd-s02-e01-cover-large.jpg │ │ │ │ │ ├── dvd-s02-e01-cover.jpg │ │ │ │ │ ├── dvd-s02-e02-cover-large.jpg │ │ │ │ │ ├── dvd-s02-e02-cover.jpg │ │ │ │ │ ├── dvd-s02-e03-cover-large.jpg │ │ │ │ │ ├── dvd-s02-e03-cover.jpg │ │ │ │ │ ├── dvd-s02-e04-cover-large.jpg │ │ │ │ │ ├── dvd-s02-e04-cover.jpg │ │ │ │ │ ├── dvd-s02-e05-cover-large.jpg │ │ │ │ │ ├── dvd-s02-e05-cover.jpg │ │ │ │ │ ├── dvd-s02-e06-cover-large.jpg │ │ │ │ │ ├── dvd-s02-e06-cover.jpg │ │ │ │ │ ├── dvd-s03-e01-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e01-cover.jpg │ │ │ │ │ ├── dvd-s03-e02-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e02-cover.jpg │ │ │ │ │ ├── dvd-s03-e03-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e03-cover.jpg │ │ │ │ │ ├── dvd-s03-e04-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e04-cover.jpg │ │ │ │ │ ├── dvd-s03-e05-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e05-cover.jpg │ │ │ │ │ ├── dvd-s03-e06-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e06-cover.jpg │ │ │ │ │ ├── dvd-s03-e07-cover-large.jpg │ │ │ │ │ ├── dvd-s03-e07-cover.jpg │ │ │ │ │ ├── dvd-s04-e01-cover-large.jpg │ │ │ │ │ ├── dvd-s04-e01-cover.jpg │ │ │ │ │ ├── dvd-s04-e02-cover-large.jpg │ │ │ │ │ ├── dvd-s04-e02-cover.jpg │ │ │ │ │ ├── dvd-s04-e03-cover-large.jpg │ │ │ │ │ ├── dvd-s04-e03-cover.jpg │ │ │ │ │ ├── dvd-s04-e04-cover-large.jpg │ │ │ │ │ ├── dvd-s04-e04-cover.jpg │ │ │ │ │ ├── dvd-s04-e05-cover-large.jpg │ │ │ │ │ ├── dvd-s04-e05-cover.jpg │ │ │ │ │ ├── dvd-s04-e06-cover-large.jpg │ │ │ │ │ ├── dvd-s04-e06-cover.jpg │ │ │ │ │ ├── dvd-series-cover-large.jpg │ │ │ │ │ └── dvd-series-cover.jpg │ │ │ ├── google-io │ │ │ │ ├── 2014 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── building-a-nacl-app.md │ │ │ │ │ ├── building-sites-for-the-multi-device-web.md │ │ │ │ │ ├── chrome-apps-on-android-and-ios.md │ │ │ │ │ ├── chrome-apps-state-of-the-union-2014.md │ │ │ │ │ ├── componentize-the-web.md │ │ │ │ │ ├── dart-in-google-cloud.md │ │ │ │ │ ├── deep-dive-google-cloud-messaging-for-chrome.md │ │ │ │ │ ├── demystifying-encodes-and-decodes-of-webm.md │ │ │ │ │ ├── easy-international-checkout-with-chrome.md │ │ │ │ │ ├── fabulous-forms-for-the-multi-device-web.md │ │ │ │ │ ├── faster-loading-images-with-webp.md │ │ │ │ │ ├── getting-your-pagespeed-score-up.md │ │ │ │ │ ├── low-latency-mobile-web-apps.md │ │ │ │ │ ├── making-music-with-the-web-platform.md │ │ │ │ │ ├── mobile-web-lessons-learned-from-analyzing-websites-at-scale.md │ │ │ │ │ ├── optimizing-dart-applications.md │ │ │ │ │ ├── polymer-creating-responsive-uis.md │ │ │ │ │ ├── polymer-interacting-with-google-services-using-nothing-but-html.md │ │ │ │ │ ├── polymer-making-web-components-accessible.md │ │ │ │ │ ├── responsive-images-today.md │ │ │ │ │ ├── silky-smooth-web-animations.md │ │ │ │ │ ├── testing-multi-screen-web-pages.md │ │ │ │ │ ├── the-serviceworker-the-network-layer-is-yours-to-own.md │ │ │ │ │ ├── touch-in-a-web-app-no-problem.md │ │ │ │ │ ├── unleash-the-power-of-kiosk-apps.md │ │ │ │ │ ├── update-on-webmvp9.md │ │ │ │ │ ├── using-the-pagespeed-api.md │ │ │ │ │ ├── video-on-mobile.md │ │ │ │ │ ├── web-performance-testing-at-youtube.md │ │ │ │ │ ├── webp-at-youtube.md │ │ │ │ │ └── whats-new-in-webview.md │ │ │ │ ├── 2015 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── fetch.md │ │ │ │ │ ├── installable.md │ │ │ │ │ ├── mobile-web.md │ │ │ │ │ ├── physical-web.md │ │ │ │ │ ├── polymer.md │ │ │ │ │ ├── push-notifications.md │ │ │ │ │ ├── supercharging-pageload.md │ │ │ │ │ └── web-bluetooth.md │ │ │ │ ├── 2016 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── accessibility-is-my-favorite-part-of-the-platform-google-io-2016.md │ │ │ │ │ ├── amp-progressive-web-apps-start-fast-stay-engaged-google-io-2016.md │ │ │ │ │ ├── bringing-seamless-checkouts-to-the-mobile-web-google-io-2016.md │ │ │ │ │ ├── building-for-billions-on-the-web-google-io-2016.md │ │ │ │ │ ├── building-the-google-io-web-app-launching-a-progressive-web-app-on-googlecom-google-io-2016.md │ │ │ │ │ ├── deep-user-engagement-with-web-push-notifications-google-io-2016.md │ │ │ │ │ ├── devtools-in-2016-accelerate-your-workflow-google-io-2016.md │ │ │ │ │ ├── fast-and-resilient-web-apps-tools-and-techniques-google-io-2016.md │ │ │ │ │ ├── fireside-chat-with-the-progressive-web-apps-crew-google-io-2016.md │ │ │ │ │ ├── great-libraries-and-tools-for-great-progressive-web-apps-google-io-2016.md │ │ │ │ │ ├── high-performance-web-user-interfaces-google-io-2016.md │ │ │ │ │ ├── houdini-demystifying-the-future-of-css-google-io-2016.md │ │ │ │ │ ├── how-amp-achieves-its-speed-google-io-2016.md │ │ │ │ │ ├── instant-loading-building-offline-first-progressive-web-apps-google-io-2016.md │ │ │ │ │ ├── mythbusting-https-squashing-securitys-urban-legends-google-io-2016.md │ │ │ │ │ ├── polymer-and-progressive-web-apps-building-on-the-modern-web-google-io-2016.md │ │ │ │ │ ├── practical-lessons-from-a-year-of-building-web-components-google-io-2016.md │ │ │ │ │ ├── progressive-performant-polymer-pick-three-google-io-2016.md │ │ │ │ │ ├── progressive-web-apps-across-all-frameworks-google-io-2016.md │ │ │ │ │ ├── search-and-the-mobile-content-ecosystem-google-io-2016.md │ │ │ │ │ ├── service-workers-at-scale-with-facebook-and-flipkart-google-io-2016.md │ │ │ │ │ ├── the-2016-web-development-workflow-google-io-2016.md │ │ │ │ │ ├── the-mobile-web-state-of-the-union-google-io-2016.md │ │ │ │ │ ├── v8-modern-javascript-and-beyond-google-io-2016.md │ │ │ │ │ ├── web-performance-tooling-google-io-2016.md │ │ │ │ │ ├── whats-next-for-the-web-google-io-2016.md │ │ │ │ │ └── who-are-you-really-safer-and-more-convenient-sign-in-on-the-web-google-io-2016.md │ │ │ │ ├── _toc.yaml │ │ │ │ └── index.md │ │ │ ├── http203 │ │ │ │ ├── index.md │ │ │ │ ├── podcast │ │ │ │ │ ├── a-is-for-effort.md │ │ │ │ │ ├── block-drop-n-swap.md │ │ │ │ │ ├── cooties-symbols-and-shaders.md │ │ │ │ │ ├── corb-cast-switch-face.md │ │ │ │ │ ├── edge-n-css-with-greg.md │ │ │ │ │ ├── eventtarget-imports-and-nudists.md │ │ │ │ │ ├── http-203-cors-forced-layouts-and-raptor-kebab-shops.md │ │ │ │ │ ├── http-203-legs-wasps-and-web-stuff.md │ │ │ │ │ ├── http-203-making-burgers-and-maintainable-code.md │ │ │ │ │ ├── http-203-poetry-and-delegated-event-listeners.md │ │ │ │ │ ├── http-203-promises-mistakes-and-door-handles.md │ │ │ │ │ ├── http-203-quizzing-animating-and-canceling.md │ │ │ │ │ ├── http-203-slippers-and-chips.md │ │ │ │ │ ├── http-203-springy-css-storage-and-bisecting.md │ │ │ │ │ ├── http203-podcast.jpg │ │ │ │ │ ├── images │ │ │ │ │ │ ├── http203-episode-1-art.jpg │ │ │ │ │ │ ├── http203-episode-2-art.jpg │ │ │ │ │ │ ├── http203-episode-3-art.jpg │ │ │ │ │ │ ├── http203-episode-4-art.jpg │ │ │ │ │ │ ├── http203-episode-5-art.jpg │ │ │ │ │ │ ├── io-mariko.jpg │ │ │ │ │ │ ├── io.jpg │ │ │ │ │ │ ├── jake-in-pain.jpg │ │ │ │ │ │ ├── surjiko-small.jpg │ │ │ │ │ │ ├── surma-and-jake-2.jpg │ │ │ │ │ │ ├── surma-and-jake.jpg │ │ │ │ │ │ ├── with-greg.jpg │ │ │ │ │ │ └── with-mariko.jpg │ │ │ │ │ ├── io-chats-ben-dion.md │ │ │ │ │ ├── io-chats-bobdod.md │ │ │ │ │ ├── io-chats-darin.md │ │ │ │ │ ├── io-chats-emily-chris.md │ │ │ │ │ ├── io-chats-ewa.md │ │ │ │ │ ├── io-chats-mariko.md │ │ │ │ │ ├── io-chats-martin.md │ │ │ │ │ ├── io-chats-monica.md │ │ │ │ │ ├── io-chats-pirish-jason.md │ │ │ │ │ ├── io-chats-sathya-mathias.md │ │ │ │ │ ├── io-chats-v-eric.md │ │ │ │ │ ├── observables-board-games-and-artechulate.md │ │ │ │ │ ├── performance-trailers-dentistry.md │ │ │ │ │ ├── rotating-an-image-to-the-extreme.md │ │ │ │ │ ├── smooshy-wasm-stacks.md │ │ │ │ │ ├── social-distance-ssr-patterns-and-bedtime-routines.md │ │ │ │ │ ├── stability-todos-and-census.md │ │ │ │ │ ├── stress-canvas-jam.md │ │ │ │ │ ├── takes-two-to-tangent.md │ │ │ │ │ ├── transform-transpile-urinal.md │ │ │ │ │ ├── twelve-things-for-2018.md │ │ │ │ │ ├── vr-api-design-lockdown.md │ │ │ │ │ ├── web-whispers-and-sleepy-thoughts.md │ │ │ │ │ ├── webrtc-again-and-about-blank.md │ │ │ │ │ ├── wet-nose-cough.md │ │ │ │ │ └── when-laptops-go-bad-on-stage.md │ │ │ │ ├── series-1 │ │ │ │ │ ├── christmas-special.md │ │ │ │ │ ├── css-triggers.md │ │ │ │ │ ├── font-rendering.md │ │ │ │ │ ├── frame-timing.md │ │ │ │ │ ├── gotchas.md │ │ │ │ │ └── pointer-events.md │ │ │ │ ├── series-2 │ │ │ │ │ ├── http-203-build-tools.md │ │ │ │ │ ├── http-203-https-everywhere.md │ │ │ │ │ ├── http-203-perf-matters.md │ │ │ │ │ ├── http-203-progressive.md │ │ │ │ │ ├── http-203-utopia-vs-dystopia.md │ │ │ │ │ ├── http-203-web-vs-native.md │ │ │ │ │ └── http203-season-2-teaser.md │ │ │ │ └── series-3 │ │ │ │ │ ├── http-203-maintainable-code.md │ │ │ │ │ ├── http-203-monoculture.md │ │ │ │ │ ├── http-203-the-future-of-javascript.md │ │ │ │ │ └── http203-season-3-teaser.md │ │ │ ├── imgs │ │ │ │ ├── blinkon.png │ │ │ │ ├── blinkon_rect.jpg │ │ │ │ ├── cds │ │ │ │ │ └── 2014 │ │ │ │ │ │ ├── applied-science │ │ │ │ │ │ ├── 100ms-vs-60fps.png │ │ │ │ │ │ └── takeover.gif │ │ │ │ │ │ ├── fundamentals-of-web-dev │ │ │ │ │ │ ├── image00.jpg │ │ │ │ │ │ ├── image01.jpg │ │ │ │ │ │ ├── image02.png │ │ │ │ │ │ ├── image03.jpg │ │ │ │ │ │ ├── image04.jpg │ │ │ │ │ │ ├── image05.jpg │ │ │ │ │ │ ├── image06.gif │ │ │ │ │ │ ├── image07.jpg │ │ │ │ │ │ ├── image07.png │ │ │ │ │ │ ├── image08.jpg │ │ │ │ │ │ ├── image09.png │ │ │ │ │ │ ├── image10.jpg │ │ │ │ │ │ └── image11.jpg │ │ │ │ │ │ ├── lets-build-some-apps-with-polymer │ │ │ │ │ │ ├── anatomy.jpg │ │ │ │ │ │ ├── app-router.jpg │ │ │ │ │ │ ├── conditional-polyfills.jpg │ │ │ │ │ │ ├── contacts-app.jpg │ │ │ │ │ │ ├── core-animated-pages.jpg │ │ │ │ │ │ ├── core-list.jpg │ │ │ │ │ │ ├── core-toolbar.jpg │ │ │ │ │ │ ├── imperative-router.jpg │ │ │ │ │ │ ├── service-worker.jpg │ │ │ │ │ │ ├── sw-install.jpg │ │ │ │ │ │ └── vulcanize.jpg │ │ │ │ │ │ └── polymer-state-of-the-union │ │ │ │ │ │ ├── data-binding.jpg │ │ │ │ │ │ ├── layers.jpg │ │ │ │ │ │ ├── polymer-better.jpg │ │ │ │ │ │ ├── reduced-payload.jpg │ │ │ │ │ │ ├── report-card.jpg │ │ │ │ │ │ ├── roadmap.jpg │ │ │ │ │ │ ├── safari-perf.jpg │ │ │ │ │ │ ├── shim-shadowdom.jpg │ │ │ │ │ │ ├── sweeter.jpg │ │ │ │ │ │ └── wc-org.jpg │ │ │ │ ├── cds_rect.png │ │ │ │ ├── devbytes_rect.jpg │ │ │ │ ├── googleio.png │ │ │ │ ├── googleio_rect.jpg │ │ │ │ ├── http203_rect.jpg │ │ │ │ ├── lazyweb.jpg │ │ │ │ ├── lazyweb_rect.jpg │ │ │ │ ├── mail-icon.svg │ │ │ │ ├── nic.png │ │ │ │ ├── nic_rect.png │ │ │ │ ├── polycasts_rect.png │ │ │ │ ├── pwa_devsummit.png │ │ │ │ ├── supercharged.jpg │ │ │ │ ├── supercharged_rect.jpg │ │ │ │ ├── ttt_rect.png │ │ │ │ ├── udacity.png │ │ │ │ ├── udacity_rect.png │ │ │ │ ├── webrtc.png │ │ │ │ └── webrtc_rect.png │ │ │ ├── lazyweb │ │ │ │ ├── 2015 │ │ │ │ │ ├── episode-1.md │ │ │ │ │ ├── episode-10.md │ │ │ │ │ ├── episode-11.md │ │ │ │ │ ├── episode-12.md │ │ │ │ │ ├── episode-2.md │ │ │ │ │ ├── episode-3.md │ │ │ │ │ ├── episode-4.md │ │ │ │ │ ├── episode-5.md │ │ │ │ │ ├── episode-6.md │ │ │ │ │ ├── episode-7.md │ │ │ │ │ ├── episode-8.md │ │ │ │ │ ├── episode-9.md │ │ │ │ │ └── images │ │ │ │ │ │ └── episode-1-benchmark.svg │ │ │ │ └── _toc.yaml │ │ │ ├── polycasts │ │ │ │ ├── _toc.yaml │ │ │ │ ├── season-1 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── core-drawer-panel.md │ │ │ │ │ ├── core-header-panel.md │ │ │ │ │ ├── core-icons.md │ │ │ │ │ ├── core-iconset.md │ │ │ │ │ ├── core-toolbar.md │ │ │ │ │ ├── seasons-greetings.md │ │ │ │ │ └── whats-new-in-polymer-0-5-1.md │ │ │ │ └── season-2 │ │ │ │ │ ├── AskPolymer_PC27.md │ │ │ │ │ ├── AskPolymer_PC29.md │ │ │ │ │ ├── Behaviors.md │ │ │ │ │ ├── Data_Binding_101.md │ │ │ │ │ ├── Iron-Iconsets.md │ │ │ │ │ ├── WebAnimations.md │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── awesome-power-of-auto-binding.md │ │ │ │ │ ├── binding-to-objects.md │ │ │ │ │ ├── content-switcheroo.md │ │ │ │ │ ├── create-reusable-elements.md │ │ │ │ │ ├── extending-native-elements.md │ │ │ │ │ ├── first-look-polymer-0-8.md │ │ │ │ │ ├── give-your-element-an-API.md │ │ │ │ │ ├── go-offline.md │ │ │ │ │ ├── iron-ajax.md │ │ │ │ │ ├── more-routing-with-more-routing.md │ │ │ │ │ ├── neon-animated-pages.md │ │ │ │ │ ├── polymer-starter-kit.md │ │ │ │ │ ├── routing-101.md │ │ │ │ │ ├── scrolling-at-60fps-with-core-list.md │ │ │ │ │ └── theming-elements.md │ │ │ ├── polymer-devsummit │ │ │ │ └── _toc.yaml │ │ │ ├── pwa-devsummit │ │ │ │ ├── _toc.yaml │ │ │ │ └── amsterdam-2016 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── building-for-billions-progressive-web-app-summit-2016.md │ │ │ │ │ ├── deep-engagment-with-push-notifications-progressive-web-app-summit-2016.md │ │ │ │ │ ├── instant-loading-offline-first-progressive-web-app-summit-2016.md │ │ │ │ │ ├── instant-loading-with-http2-progressive-web-app-summit-2016.md │ │ │ │ │ ├── konga-learnings-from-building-with-polymer-progressive-web-app-summit-2016.md │ │ │ │ │ ├── microsoft-keeping-the-progressive-in-pwas-progressive-web-app-summit-2016.md │ │ │ │ │ ├── mythbusting-https-progressive-web-app-summit-2016.md │ │ │ │ │ ├── opening-keynote-progressive-web-app-summit-2016.md │ │ │ │ │ ├── progressive-web-apps-in-firefox-progressive-web-app-summit-2016.md │ │ │ │ │ ├── putting-the-progressive-in-progressive-web-apps-progressive-web-app-summit-2016.md │ │ │ │ │ ├── pwa-dev-summit-2016-day-1-live-stream.md │ │ │ │ │ ├── pwa-developer-summit-2016-is-coming.md │ │ │ │ │ ├── pwa-developer-summit-2016-live-stream-registration.md │ │ │ │ │ ├── pwa-in-small-steps-progressive-web-app-summit-2016.md │ │ │ │ │ ├── pwas-in-any-context-progressive-web-app-summit-2016.md │ │ │ │ │ ├── pwas-operas-perspective-progressive-web-app-summit-2016.md │ │ │ │ │ ├── pwas-the-panel-progressive-web-app-summit-2016.md │ │ │ │ │ ├── samsung-internets-progressive-web-app-commitment-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-building-for-billions-with-progressive-web-apps-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-building-one-of-africas-most-successful-pwas-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-checking-in-with-paul-lewis-and-jake-archibald-progressive-web-apps-summit-2016.md │ │ │ │ │ ├── summit-report-educating-bleeding-edge-pwa-developers-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-making-progressive-web-apps-accessible-at-scale-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-progressive-web-apps-for-any-occassion-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-reach-acquisition-and-conversion-progressive-web-apps-summit-2016.md │ │ │ │ │ ├── summit-report-talking-https-with-emily-schechter-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-thats-a-wrap-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-the-web-developers-swarm-progressive-web-apps-summit-2016.md │ │ │ │ │ ├── summit-report-what-do-i-need-to-know-about-http2-progressive-web-app-summit-2016.md │ │ │ │ │ ├── summit-report-whys-it-called-a-progressive-web-app-progressive-web-app-summit-2016.md │ │ │ │ │ ├── the-future-of-progressive-web-apps-progressive-web-app-summit-2016.md │ │ │ │ │ ├── to-the-lighthouse-progressive-web-app-summit-2016.md │ │ │ │ │ ├── tools-for-success-progressive-web-app-summit-2016.md │ │ │ │ │ ├── ui-elements-at-60fps-progressive-web-app-summit-2016.md │ │ │ │ │ └── using-web-components-to-build-pwas-progressive-web-app-summit-2016.md │ │ │ ├── supercharged │ │ │ │ ├── _toc.yaml │ │ │ │ ├── season-1 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── player-fm.md │ │ │ │ │ ├── supercharged-jais-web-blog-s1-ep4.md │ │ │ │ │ ├── supercharged-slack-extended-xmas-special-s1-ep5.md │ │ │ │ │ ├── the-guardian-part-1.md │ │ │ │ │ └── the-guardian-part-2.md │ │ │ │ └── season-2 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── easy-easing-micro-tip-1-supercharged.md │ │ │ │ │ ├── flip-microtip-2-supercharged.md │ │ │ │ │ ├── router-live-code-session-supercharged.md │ │ │ │ │ ├── router-part-1-tldw-supercharged.md │ │ │ │ │ ├── router-part-2-live-code-session-supercharged.md │ │ │ │ │ ├── router-part-2-live-coding-session-coming-june-30th.md │ │ │ │ │ ├── router-part-2-tldw-supercharged.md │ │ │ │ │ ├── side-navigation-bar-live-code-session-supercharged.md │ │ │ │ │ ├── side-navigation-bar-tldw-supercharged.md │ │ │ │ │ ├── supercharged-call-for-submissions.md │ │ │ │ │ ├── supercharged-qa-may-2016.md │ │ │ │ │ ├── swipeable-cards-live-code-session-supercharged.md │ │ │ │ │ └── swipeable-cards-tldw-supercharged.md │ │ │ ├── ttt │ │ │ │ ├── _toc.yaml │ │ │ │ ├── imgs │ │ │ │ │ └── ttt_header.png │ │ │ │ ├── series-1 │ │ │ │ │ ├── _toc.yaml │ │ │ │ │ ├── cmd-line-shortcuts.md │ │ │ │ │ ├── cmd-line.md │ │ │ │ │ ├── debugging-promises-w-devtools.md │ │ │ │ │ ├── dt-grab-bag.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── autofilename-screenshot.png │ │ │ │ │ │ ├── color-highlighter-filled.png │ │ │ │ │ │ ├── color-highlighter-underline.png │ │ │ │ │ │ ├── color-picker-screenshot.png │ │ │ │ │ │ ├── gutter-color.png │ │ │ │ │ │ ├── jscs-screenshot.png │ │ │ │ │ │ ├── jshint-gutter-screenshot.png │ │ │ │ │ │ ├── jshint-screenshot.png │ │ │ │ │ │ └── package-control-screenshot.png │ │ │ │ │ ├── mt-addys-theme.md │ │ │ │ │ ├── mt-eye-dropper.md │ │ │ │ │ ├── perf-auditing.md │ │ │ │ │ ├── sublime-text-plugins.md │ │ │ │ │ └── ttt-psi.md │ │ │ │ └── series-2 │ │ │ │ │ ├── es2015.md │ │ │ │ │ ├── images │ │ │ │ │ ├── es2015 │ │ │ │ │ │ ├── image00.png │ │ │ │ │ │ ├── image01.png │ │ │ │ │ │ ├── image02.png │ │ │ │ │ │ ├── image03.png │ │ │ │ │ │ ├── image04.png │ │ │ │ │ │ ├── image05.png │ │ │ │ │ │ ├── image06.png │ │ │ │ │ │ └── image07.png │ │ │ │ │ ├── sublime-snippets │ │ │ │ │ │ ├── image00.png │ │ │ │ │ │ ├── image01.png │ │ │ │ │ │ ├── image02.png │ │ │ │ │ │ ├── image03.png │ │ │ │ │ │ └── image04.png │ │ │ │ │ └── window-commandline │ │ │ │ │ │ ├── chocoinstall.jpg │ │ │ │ │ │ ├── clink-reverse-history.jpg │ │ │ │ │ │ ├── cmder-integrated-sublime.jpg │ │ │ │ │ │ ├── conemu-settings.jpg │ │ │ │ │ │ ├── conemu-splitscreen.jpg │ │ │ │ │ │ ├── powershell-alias.jpg │ │ │ │ │ │ ├── powershell-window.jpg │ │ │ │ │ │ └── psreadline.jpg │ │ │ │ │ ├── sublime-snippet.md │ │ │ │ │ └── windows-commandline.md │ │ │ ├── udacity │ │ │ │ ├── _toc.yaml │ │ │ │ ├── img │ │ │ │ │ ├── ud811.jpg │ │ │ │ │ ├── ud860.jpg │ │ │ │ │ ├── ud882.png │ │ │ │ │ ├── ud884.jpg │ │ │ │ │ ├── ud890.jpg │ │ │ │ │ ├── ud891.jpg │ │ │ │ │ ├── ud892.jpg │ │ │ │ │ ├── ud893.jpg │ │ │ │ │ └── ud899.png │ │ │ │ └── index.md │ │ │ └── webrtc │ │ │ │ ├── 2015 │ │ │ │ ├── _toc.yaml │ │ │ │ ├── krankygeek-01-welcome.md │ │ │ │ ├── krankygeek-02-ux.md │ │ │ │ ├── krankygeek-03-skedans.md │ │ │ │ ├── krankygeek-04-freshdesk.md │ │ │ │ ├── krankygeek-05-wix.md │ │ │ │ ├── krankygeek-06-bluemix.md │ │ │ │ ├── krankygeek-07-mozilla.md │ │ │ │ ├── krankygeek-08-customer.md │ │ │ │ ├── krankygeek-09-routing.md │ │ │ │ ├── krankygeek-10-billions.md │ │ │ │ ├── krankygeek-11-decisions.md │ │ │ │ ├── krankygeek-12-google.md │ │ │ │ ├── krankygeek-13-ortc.md │ │ │ │ └── krankygeek-14-building.md │ │ │ │ └── _toc.yaml │ │ ├── styles │ │ │ ├── wf-landing.css │ │ │ └── wf-root.css │ │ ├── tools │ │ │ ├── _book.yaml │ │ │ ├── _project.yaml │ │ │ ├── _redirects.yaml │ │ │ ├── images │ │ │ │ ├── angular-16x9.png │ │ │ │ ├── angular.png │ │ │ │ ├── chrome-devtools-16x9.png │ │ │ │ ├── chrome-devtools.png │ │ │ │ ├── lighthouse-16x9.png │ │ │ │ ├── lit-16x9.png │ │ │ │ ├── pagespeed-16x9.png │ │ │ │ ├── pagespeed.svg │ │ │ │ ├── puppeteer-16x9.png │ │ │ │ ├── puppeteer.png │ │ │ │ ├── tools-landing-page.gif │ │ │ │ └── workbox-16x9.png │ │ │ └── lighthouse │ │ │ │ ├── images │ │ │ │ ├── audits.png │ │ │ │ ├── category-scores.png │ │ │ │ ├── cdt-report.png │ │ │ │ ├── download-report.png │ │ │ │ ├── extension.png │ │ │ │ ├── icon-on-toolbar.jpg │ │ │ │ ├── lh_favicon_32px.png │ │ │ │ ├── lh_logo_bg.png │ │ │ │ ├── lighthouse-icon-128.png │ │ │ │ ├── lighthouse-icon-38.png │ │ │ │ ├── lighthouse-logo.svg │ │ │ │ ├── lighthouse-psi.png │ │ │ │ ├── report.jpg │ │ │ │ ├── report.png │ │ │ │ ├── share.png │ │ │ │ ├── user-timing-measurement-in-devtools.png │ │ │ │ └── viewer.png │ │ │ │ ├── v3 │ │ │ │ ├── imgs │ │ │ │ │ └── ui.png │ │ │ │ └── migration.md │ │ │ │ └── variability.md │ │ └── updates │ │ │ ├── _redirects.yaml │ │ │ ├── _shared │ │ │ ├── canary.md │ │ │ ├── capabilities.html │ │ │ ├── deprecations-policy.html │ │ │ ├── deprecations.html │ │ │ ├── devtools-feedback.md │ │ │ ├── devtools-research.md │ │ │ ├── discover.md │ │ │ ├── no-new-deprecations.html │ │ │ ├── no-new-removals.html │ │ │ └── see-all-dep-rem.html │ │ │ ├── app-window-elements.png │ │ │ ├── images │ │ │ ├── 2015 │ │ │ │ ├── 10 │ │ │ │ │ ├── inputdevicecapabilities.png │ │ │ │ │ ├── notification.png │ │ │ │ │ ├── splashscreen.gif │ │ │ │ │ └── splashscreen.png │ │ │ │ ├── 11 │ │ │ │ │ └── devtools-digest │ │ │ │ │ │ └── animations.png │ │ │ │ ├── 12 │ │ │ │ │ └── sync │ │ │ │ │ │ └── emojoy.png │ │ │ │ └── 03 │ │ │ │ │ └── push │ │ │ │ │ ├── api-key.png │ │ │ │ │ ├── api-library.png │ │ │ │ │ ├── credentials.png │ │ │ │ │ ├── gcm-android-enabled.png │ │ │ │ │ ├── new-project.png │ │ │ │ │ ├── project-cloud-messaging.png │ │ │ │ │ ├── project-home.png │ │ │ │ │ ├── project-number.png │ │ │ │ │ ├── project-settings-menu.png │ │ │ │ │ └── server-key.png │ │ │ ├── 2016 │ │ │ │ ├── 10 │ │ │ │ │ ├── addeventlistener-once.png │ │ │ │ │ ├── resizeobserver │ │ │ │ │ │ └── contentbox.png │ │ │ │ │ └── santa-phone.png │ │ │ │ ├── 11 │ │ │ │ │ └── cds │ │ │ │ │ │ └── featured.jpg │ │ │ │ ├── 02 │ │ │ │ │ ├── css-variables-why-should-you-care │ │ │ │ │ │ └── custom-prop.png │ │ │ │ │ ├── es2015-proxies │ │ │ │ │ │ └── featured.png │ │ │ │ │ ├── save-data │ │ │ │ │ │ ├── data-saver-chrome.png │ │ │ │ │ │ └── google-weblight.png │ │ │ │ │ └── smooth-scrolling-in-chrome-49 │ │ │ │ │ │ └── smooth-scroll.png │ │ │ │ ├── 03 │ │ │ │ │ └── dom-validation.png │ │ │ │ ├── 04 │ │ │ │ │ └── chrome-51-deprecations │ │ │ │ │ │ └── deps-rems.png │ │ │ │ ├── 06 │ │ │ │ │ ├── chrome-52-deprecations │ │ │ │ │ │ └── deps-rems.png │ │ │ │ │ ├── device-orientation.png │ │ │ │ │ ├── devtools.png │ │ │ │ │ ├── ic_merge_type_black.png │ │ │ │ │ └── media-query.png │ │ │ │ ├── 07 │ │ │ │ │ ├── ic_timeline_black.png │ │ │ │ │ ├── payment-request │ │ │ │ │ │ ├── 0.png │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ └── 5.png │ │ │ │ │ └── web-push-interop-wins │ │ │ │ │ │ └── featured-image.png │ │ │ │ ├── 08 │ │ │ │ │ └── document-write-warning.png │ │ │ │ └── 09 │ │ │ │ │ └── cache-query-options.png │ │ │ ├── 2017 │ │ │ │ ├── 10 │ │ │ │ │ ├── animated-blur │ │ │ │ │ │ ├── badblur.jpg │ │ │ │ │ │ ├── goodblur.jpg │ │ │ │ │ │ ├── pipeline.png │ │ │ │ │ │ └── poster.jpg │ │ │ │ │ ├── intl-pluralrules.png │ │ │ │ │ ├── quota-console-error.png │ │ │ │ │ └── quota-watch-window.png │ │ │ │ ├── 12 │ │ │ │ │ ├── export-report.png │ │ │ │ │ └── modal-permission-clipped.jpg │ │ │ │ ├── 01 │ │ │ │ │ └── webcomponents.org │ │ │ │ │ │ ├── image00.gif │ │ │ │ │ │ └── webcomponents.gif │ │ │ │ ├── 03 │ │ │ │ │ ├── console-settings.png │ │ │ │ │ ├── custom-scrollbar │ │ │ │ │ │ ├── matrixmath01.svg │ │ │ │ │ │ ├── matrixmath01.tex.txt │ │ │ │ │ │ ├── matrixmath02.svg │ │ │ │ │ │ ├── matrixmath02.tex.txt │ │ │ │ │ │ ├── perspective.png │ │ │ │ │ │ ├── poster.jpg │ │ │ │ │ │ ├── thumbmath01.svg │ │ │ │ │ │ ├── thumbmath01.tex.txt │ │ │ │ │ │ ├── thumbmath02.svg │ │ │ │ │ │ └── thumbmath02.tex.txt │ │ │ │ │ ├── nic57 │ │ │ │ │ │ ├── grid-layout.png │ │ │ │ │ │ └── media-session.png │ │ │ │ │ └── release-notes-preview.png │ │ │ │ ├── 04 │ │ │ │ │ ├── launch-fullscreen.png │ │ │ │ │ └── related.png │ │ │ │ ├── 07 │ │ │ │ │ ├── flamechart-setting.svg │ │ │ │ │ ├── throttling-definitions.svg │ │ │ │ │ └── v8.png │ │ │ │ └── 09 │ │ │ │ │ ├── abortable-fetch.png │ │ │ │ │ ├── media-engagement.png │ │ │ │ │ ├── sensors │ │ │ │ │ ├── accelerometer.gif │ │ │ │ │ ├── device_coordinate_system.png │ │ │ │ │ ├── gyroscope.gif │ │ │ │ │ ├── orientation.gif │ │ │ │ │ ├── orientation_phone.png │ │ │ │ │ ├── punchmeter.png │ │ │ │ │ └── screen_coordinate_system.png │ │ │ │ │ └── web-share_framed.png │ │ │ ├── 2018 │ │ │ │ ├── 10 │ │ │ │ │ ├── animation-worklet │ │ │ │ │ │ ├── slowprop.png │ │ │ │ │ │ └── social.png │ │ │ │ │ ├── audio-playlist.jpg │ │ │ │ │ ├── cache-addall-warning.png │ │ │ │ │ ├── media-playback-controls.png │ │ │ │ │ ├── watch-video-using-picture-in-picture │ │ │ │ │ │ └── hero.png │ │ │ │ │ └── webauth.png │ │ │ │ ├── 11 │ │ │ │ │ ├── signed-exchanges.svg │ │ │ │ │ └── web-audio-games.png │ │ │ │ ├── 12 │ │ │ │ │ ├── badges-on-windows.jpg │ │ │ │ │ ├── badges.png │ │ │ │ │ ├── getinstalled-cropped.jpg │ │ │ │ │ ├── twitter-rel-time.jpg │ │ │ │ │ ├── vertical-text.png │ │ │ │ │ ├── wake-logo-featured.png │ │ │ │ │ ├── wst-receive.png │ │ │ │ │ └── wst-send.png │ │ │ │ ├── 02 │ │ │ │ │ ├── blackbox-framework.png │ │ │ │ │ ├── blackbox.png │ │ │ │ │ ├── blackboxed-results.png │ │ │ │ │ ├── click-breakpoint.png │ │ │ │ │ ├── overrides.png │ │ │ │ │ ├── preview-prettyprint.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── resolved.png │ │ │ │ │ ├── response-prettyprint.png │ │ │ │ │ └── wrapper.png │ │ │ │ ├── 03 │ │ │ │ │ └── nic65-server-timing-devtools.png │ │ │ │ ├── 06 │ │ │ │ │ ├── featurepolicy │ │ │ │ │ │ └── violation.png │ │ │ │ │ ├── watch-video-using-picture-in-picture │ │ │ │ │ │ └── hero.png │ │ │ │ │ └── webar-chacmool.jpg │ │ │ │ ├── 07 │ │ │ │ │ ├── infographic-speed-tools.jpg │ │ │ │ │ ├── nostate-prefetch.png │ │ │ │ │ └── pwacompat.png │ │ │ │ ├── 08 │ │ │ │ │ └── reporting │ │ │ │ │ │ └── about_network.png │ │ │ │ └── 09 │ │ │ │ │ ├── conic-gradient.jpg │ │ │ │ │ ├── notch-extra-margin.png │ │ │ │ │ └── simple-notch.png │ │ │ ├── 2019 │ │ │ │ ├── 10 │ │ │ │ │ ├── cds-2019.png │ │ │ │ │ ├── fs-open.jpg │ │ │ │ │ ├── info.png │ │ │ │ │ ├── new-78.jpg │ │ │ │ │ └── ot-landing.png │ │ │ │ ├── 11 │ │ │ │ │ └── cr-chron │ │ │ │ │ │ ├── img1.png │ │ │ │ │ │ └── img2.png │ │ │ │ ├── 12 │ │ │ │ │ ├── columns.png │ │ │ │ │ ├── cr-chron-1.png │ │ │ │ │ ├── cr-chron-2.png │ │ │ │ │ ├── initiators.png │ │ │ │ │ ├── letafter.png │ │ │ │ │ ├── letbefore.png │ │ │ │ │ ├── maskable.mp4 │ │ │ │ │ ├── maskable.webm │ │ │ │ │ ├── modes.png │ │ │ │ │ ├── new-79.jpg │ │ │ │ │ ├── overview.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── useragent.png │ │ │ │ │ └── wasm.png │ │ │ │ ├── 01 │ │ │ │ │ ├── rtcquictransport │ │ │ │ │ │ ├── rtcquictransport-overview.png │ │ │ │ │ │ └── rtcquictransport-setup.png │ │ │ │ │ └── user-activation.png │ │ │ │ ├── 02 │ │ │ │ │ ├── constructable-stylesheets │ │ │ │ │ │ ├── demo.mp4 │ │ │ │ │ │ └── overview.png │ │ │ │ │ ├── intersectionobserver-v2.png │ │ │ │ │ ├── lit-element.jpg │ │ │ │ │ ├── responsive-space-suit.png │ │ │ │ │ ├── space-suit.png │ │ │ │ │ └── trick-ad-click.png │ │ │ │ ├── 03 │ │ │ │ │ ├── prefers-reduced-motion │ │ │ │ │ │ ├── android-remove-animations.png │ │ │ │ │ │ ├── ice-skating.jpg │ │ │ │ │ │ └── macos-reduce-motion.png │ │ │ │ │ └── twitter-installed.jpg │ │ │ │ ├── 05 │ │ │ │ │ └── masthead.jpg │ │ │ │ ├── 06 │ │ │ │ │ ├── balazs-ketyi-1410250-unsplash-small.jpg │ │ │ │ │ ├── cr-cron3-diff.jpg │ │ │ │ │ ├── cr-cron3-left.png │ │ │ │ │ ├── cr-cron3-right.png │ │ │ │ │ ├── layoutNG-header.jpg │ │ │ │ │ ├── ng_float_overlap.png │ │ │ │ │ ├── nic075.jpg │ │ │ │ │ ├── pwa-omnibox-install.jpg │ │ │ │ │ ├── web-share-from-myntra-to-twitter.mp4 │ │ │ │ │ ├── web-share-from-myntra-to-twitter.webm │ │ │ │ │ └── webapk.png │ │ │ │ ├── 07 │ │ │ │ │ ├── nic076.jpg │ │ │ │ │ └── web-components-console-deprecations.png │ │ │ │ ├── 08 │ │ │ │ │ ├── ch-chron5 │ │ │ │ │ │ ├── rule-of-two.jpg │ │ │ │ │ │ └── sandbox-diagram.png │ │ │ │ │ ├── contact-picker-demo.jpg │ │ │ │ │ ├── contact-picker-left.jpg │ │ │ │ │ ├── contact-picker-long-press.jpg │ │ │ │ │ ├── contact-picker-right.jpg │ │ │ │ │ ├── contact-picker-user-choice.jpg │ │ │ │ │ ├── fs-open.jpg │ │ │ │ │ ├── fs-save-icon.jpg │ │ │ │ │ ├── fs-save-permission-crop.jpg │ │ │ │ │ ├── fs-save-permission.jpg │ │ │ │ │ ├── fs-save.jpg │ │ │ │ │ └── periodic-background-sync │ │ │ │ │ │ ├── 1-record.png │ │ │ │ │ │ ├── 2-record-result.png │ │ │ │ │ │ ├── 3-sw-panel.png │ │ │ │ │ │ ├── 4-experiments.png │ │ │ │ │ │ ├── 5-settings.png │ │ │ │ │ │ ├── 6-checkbox.png │ │ │ │ │ │ └── 7-panel.png │ │ │ │ └── 09 │ │ │ │ │ ├── cds2019.png │ │ │ │ │ ├── chrom-chron-6-screenshot1.png │ │ │ │ │ ├── chrom-chron-6-screenshot2.png │ │ │ │ │ ├── chrom-chron-6-screenshot3.png │ │ │ │ │ ├── lcp-google-filmstrip.png │ │ │ │ │ ├── new-77.jpg │ │ │ │ │ └── perf-metrics-load-timeline.png │ │ │ ├── 2020 │ │ │ │ ├── 10 │ │ │ │ │ ├── dep-rem_87.jpg │ │ │ │ │ ├── fs-save-permission-crop.jpg │ │ │ │ │ ├── game-controller.jpg │ │ │ │ │ ├── new-86.jpg │ │ │ │ │ └── webhid-prompt.jpg │ │ │ │ ├── 11 │ │ │ │ │ ├── camera-ptz-user-prompt.jpg │ │ │ │ │ ├── nic87.png │ │ │ │ │ └── photopea.png │ │ │ │ ├── 12 │ │ │ │ │ └── dep-rem_480.jpg │ │ │ │ ├── 01 │ │ │ │ │ └── twa-multi-origin │ │ │ │ │ │ └── off-origin-navigation.gif │ │ │ │ ├── 02 │ │ │ │ │ ├── cc12-omnibox.png │ │ │ │ │ └── new-80.jpg │ │ │ │ ├── 04 │ │ │ │ │ └── cr-calendar.jpg │ │ │ │ ├── 05 │ │ │ │ │ ├── dep-rem_480.jpg │ │ │ │ │ ├── forms-after.png │ │ │ │ │ ├── forms-before.png │ │ │ │ │ ├── forms-focus-ring.gif │ │ │ │ │ ├── new-83.jpg │ │ │ │ │ └── vitals-core.jpg │ │ │ │ └── 09 │ │ │ │ │ ├── dep-rem_86.jpg │ │ │ │ │ └── es-migrate-spreadsheet.png │ │ │ ├── 2021 │ │ │ │ └── 01 │ │ │ │ │ ├── devtools-blog.png │ │ │ │ │ ├── nic88.jpg │ │ │ │ │ └── pillars.png │ │ │ ├── 2015-03-03 │ │ │ │ ├── add-to-home-screen.gif │ │ │ │ ├── app-install-banner-io.png │ │ │ │ ├── app-install-banner-qr.png │ │ │ │ └── inlineinstall.gif │ │ │ ├── 2015-04-16-autocapitalize │ │ │ │ ├── no-capitalization.mp4 │ │ │ │ └── no-capitalization.webm │ │ │ ├── 2015-05-05-hard-reload │ │ │ │ └── screenshot.png │ │ │ ├── 2015-06-05-checkout-faster-with-autofill │ │ │ │ ├── autofill-1.gif │ │ │ │ └── autofill-ex.png │ │ │ ├── 2015-07-24-an-improved-breadcrumb-trail-for-the-dom │ │ │ │ └── better-breadcrumbs.gif │ │ │ ├── 2015-08-28-using-web-app-manifest-to-set-solid-color-loading-screen │ │ │ │ ├── airhorn.png │ │ │ │ ├── background_color.gif │ │ │ │ ├── blue.png │ │ │ │ └── white.png │ │ │ ├── 2015-09-02-history-api-scroll-restoration │ │ │ │ └── featured.jpg │ │ │ ├── 2015-10-28-chrome-47-webrtc │ │ │ │ ├── featured.jpg │ │ │ │ ├── lp.jpg │ │ │ │ └── network-limiter.png │ │ │ ├── generic │ │ │ │ ├── animations.png │ │ │ │ ├── audio.png │ │ │ │ ├── baseline-sync.png │ │ │ │ ├── checklist.png │ │ │ │ ├── chrome-devtools.png │ │ │ │ ├── contacts.png │ │ │ │ ├── cr-chron.jpg │ │ │ │ ├── credit_card.png │ │ │ │ ├── deps-rems.jpg │ │ │ │ ├── devices.png │ │ │ │ ├── encryption.png │ │ │ │ ├── file.png │ │ │ │ ├── focus.png │ │ │ │ ├── headless-chrome.png │ │ │ │ ├── info.png │ │ │ │ ├── js.png │ │ │ │ ├── keyboard.png │ │ │ │ ├── monthly.png │ │ │ │ ├── mouse.png │ │ │ │ ├── new-in-chrome.png │ │ │ │ ├── notifications.png │ │ │ │ ├── photo.png │ │ │ │ ├── picture-in-picture.png │ │ │ │ ├── play-outline.png │ │ │ │ ├── quilt.png │ │ │ │ ├── screen-rotation.png │ │ │ │ ├── sd-card.png │ │ │ │ ├── security.png │ │ │ │ ├── send.png │ │ │ │ ├── share.png │ │ │ │ ├── star.png │ │ │ │ ├── styles.png │ │ │ │ ├── thumbs-up.png │ │ │ │ ├── timeline.png │ │ │ │ ├── timer.png │ │ │ │ ├── usb.png │ │ │ │ ├── visibility.png │ │ │ │ ├── vr-in-chrome.png │ │ │ │ ├── warning.png │ │ │ │ ├── webassembly.png │ │ │ │ └── webaudio.png │ │ │ ├── misc │ │ │ │ ├── android-magnification.png │ │ │ │ ├── chrome-a11y.png │ │ │ │ ├── deps-rems.png │ │ │ │ ├── forced-sync-layout-popup.png │ │ │ │ ├── rowscols.png │ │ │ │ ├── rtcshare.jpg │ │ │ │ └── weird.jpg │ │ │ └── supercharged │ │ │ │ └── poster.jpg │ │ │ └── videos │ │ │ ├── 2016 │ │ │ └── 07 │ │ │ │ └── autoplay │ │ │ │ ├── chrome-clip.mp4 │ │ │ │ └── chrome-clip.webm │ │ │ ├── 2017 │ │ │ └── 10 │ │ │ │ ├── otvfont.mp4 │ │ │ │ └── otvfont.webm │ │ │ ├── 2019 │ │ │ └── 03 │ │ │ │ └── prefers-reduced-motion │ │ │ │ ├── prefers-reduced-motion.mp4 │ │ │ │ └── prefers-reduced-motion.png │ │ │ ├── 2015-06-12-media-source-extensions-for-audio │ │ │ ├── poster-green.jpg │ │ │ └── poster-red.jpg │ │ │ └── 2015-07-21-media-notifications │ │ │ ├── media-notifications.mp4 │ │ │ ├── media-notifications.webm │ │ │ └── poster.jpg │ ├── es │ │ ├── _common-links.md │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ ├── translation-out-of-date.html │ │ │ └── udacity │ │ │ └── ud860.html │ ├── fr │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ ├── translation-out-of-date.html │ │ │ └── udacity │ │ │ └── ud860.html │ ├── he │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── hi │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── id │ │ ├── _common-links.md │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── it │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ ├── translation-out-of-date.html │ │ │ └── udacity │ │ │ ├── ud811.html │ │ │ ├── ud860.html │ │ │ ├── ud882.html │ │ │ ├── ud884.html │ │ │ ├── ud890.html │ │ │ ├── ud891.html │ │ │ ├── ud892.html │ │ │ ├── ud893.html │ │ │ └── ud899.html │ ├── ja │ │ ├── _common-links.md │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── ko │ │ ├── _common-links.md │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ ├── translation-out-of-date.html │ │ │ └── udacity │ │ │ └── ud860.html │ ├── nl │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── pt-br │ │ ├── _common-links.md │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── ru │ │ ├── _common-links.md │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ ├── translation-out-of-date.html │ │ │ └── udacity │ │ │ └── ud860.html │ ├── th │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── tr │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── vi │ │ └── _shared │ │ │ ├── machine-translation-start.html │ │ │ └── translation-out-of-date.html │ ├── zh-cn │ │ ├── _common-links.md │ │ ├── _shared │ │ │ ├── machine-translation-start.html │ │ │ ├── translation-out-of-date.html │ │ │ └── udacity │ │ │ │ ├── ud811.html │ │ │ │ ├── ud860.html │ │ │ │ ├── ud882.html │ │ │ │ ├── ud884.html │ │ │ │ ├── ud891.html │ │ │ │ ├── ud892.html │ │ │ │ ├── ud893.html │ │ │ │ └── ud899.html │ │ └── fundamentals │ │ │ └── codelabs │ │ │ └── offline │ │ │ └── images │ │ │ ├── image00.png │ │ │ ├── image01.png │ │ │ ├── image02.png │ │ │ ├── image03.png │ │ │ └── image04.png │ └── zh-tw │ │ ├── _common-links.md │ │ └── _shared │ │ ├── machine-translation-start.html │ │ ├── related-guides │ │ └── heading.html │ │ ├── translation-out-of-date.html │ │ └── udacity │ │ ├── ud811.html │ │ ├── ud860.html │ │ ├── ud882.html │ │ ├── ud884.html │ │ ├── ud890.html │ │ ├── ud892.html │ │ ├── ud893.html │ │ └── ud899.html ├── data │ ├── _contributors.yaml │ ├── blinkComponents.json │ ├── common-typos.yaml │ └── commonTags.json ├── templates │ ├── article-list.md │ ├── atom.xml │ ├── contributors │ │ ├── article-list.md │ │ ├── include.html │ │ └── index.md │ ├── fundamentals │ │ └── glossary.md │ ├── index.yaml │ ├── landing-page │ │ ├── latest-show.html │ │ └── latest-updates.html │ ├── latest_articles.html │ ├── reference-docs │ │ └── jsdoc │ │ │ ├── lang │ │ │ └── en.yaml │ │ │ ├── lib │ │ │ └── publishjob.js │ │ │ ├── publish.js │ │ │ ├── static │ │ │ └── jsdoc.css │ │ │ └── views │ │ │ ├── augments.hbs │ │ │ ├── classes-links.hbs │ │ │ ├── details-table-row.hbs │ │ │ ├── details-table.hbs │ │ │ ├── implements.hbs │ │ │ ├── index-all.hbs │ │ │ ├── index.hbs │ │ │ ├── layout.hbs │ │ │ ├── params.hbs │ │ │ ├── properties.hbs │ │ │ ├── see.hbs │ │ │ ├── signature.hbs │ │ │ ├── symbol-content.hbs │ │ │ ├── symbol-detail.hbs │ │ │ ├── symbol-header.hbs │ │ │ ├── symbol-index-section.hbs │ │ │ ├── symbol-index.hbs │ │ │ ├── symbol-labels.hbs │ │ │ ├── symbol-overview.hbs │ │ │ ├── symbol-version.hbs │ │ │ └── toc-yaml.hbs │ ├── rss.xml │ ├── showcase │ │ ├── _template.md │ │ ├── index.yaml │ │ ├── region.md │ │ └── vertical.md │ ├── shows │ │ ├── index.md │ │ ├── latest.html │ │ └── podcast.xml │ ├── tags │ │ ├── tag-index.md │ │ └── tag_toc.yaml │ ├── toc-month.yaml │ ├── updates │ │ ├── _template.md │ │ └── index.yaml │ └── workbox │ │ └── contributors.html └── tests │ ├── _contributors.yaml │ ├── _good-include.md │ ├── anchor-bad.md │ ├── author-invalid.md │ ├── blank-heading.md │ ├── blink-component-bad.md │ ├── blink-component-missing.md │ ├── common-typos.md │ ├── commonTags.json │ ├── description-contains-html.md │ ├── description-contains-md.md │ ├── description-missing.md │ ├── description-too-long.md │ ├── dgc-hardcoded.md │ ├── extension-should-be-md.mdown │ ├── extra-dot-in-filename.file.md │ ├── featured-image-not-found.md │ ├── forced-lang.md │ ├── good-article.md │ ├── good-simple.md │ ├── heading-in-html.md │ ├── images-missing.md │ ├── include-bad-quote.md │ ├── include-code.md │ ├── include-missing.md │ ├── include-not-start-web.md │ ├── max-line-length.md │ ├── md-include-good.md │ ├── md-include-missing.md │ ├── missing-key-attributes.md │ ├── page-title-missing.md │ ├── page-title-multiple.md │ ├── page-title-with-entity.md │ ├── page-title-with-html.md │ ├── page-title-with-md.md │ ├── page-title-with-md2.md │ ├── published-on-invalid.md │ ├── published-on-missing.md │ ├── sandbox-link.md │ ├── script-tags.md │ ├── tldr.md │ ├── uncommon-tag.md │ ├── unescaped-template-entity.md │ ├── unsafe-shortlink.md │ ├── updated-on-invalid.md │ ├── updated-on-missing.md │ ├── web-fundamentals-icon192x192.png │ ├── yaml-good.yaml │ ├── yaml-invalid.yaml │ └── youtube-embed.md ├── start-appengine.sh ├── tools ├── findOrphanedL10N.js ├── importTranslations.js ├── translate.js ├── translate.sh ├── update-blink_components.sh └── update-resources.sh └── web-fundamentals-icon.svg /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["eslint:recommended", "google"], 3 | "parserOptions": { 4 | "ecmaVersion": 2017 5 | }, 6 | "env": { 7 | "node": true, 8 | "es6": true 9 | }, 10 | "rules": { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "google", 3 | "validateLineBreaks": "LF", 4 | "validateIndentation": 2, 5 | "excludeFiles": ["node_modules/**"] 6 | } 7 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /appengine_config.py: -------------------------------------------------------------------------------- 1 | from google.appengine.ext import vendor 2 | 3 | # Add any libraries installed in the "lib" folder. 4 | vendor.add('gae/lib') 5 | -------------------------------------------------------------------------------- /gae/images/redesign-14/button-down-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /gae/images/redesign-14/button-down-grey.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /gae/includes/head-embedded-styles.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /gae/includes/section-nav.html: -------------------------------------------------------------------------------- 1 | {% if renderedLeftNav %} 2 | 5 | {% endif %} 6 | -------------------------------------------------------------------------------- /gae/includes/survey.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gae/lib/Markdown-2.6.7-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gae/lib/Markdown-2.6.7-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markdown 2 | -------------------------------------------------------------------------------- /gae/robots.txt: -------------------------------------------------------------------------------- 1 | # This is only used for QA testing so that we don't duplicate content in search 2 | User-agent: * 3 | Disallow: / -------------------------------------------------------------------------------- /gae/styles/empty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/gae/styles/empty.css -------------------------------------------------------------------------------- /src/content/ar/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/ar/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/de/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/en/_book.yaml: -------------------------------------------------------------------------------- 1 | # ATTENTION - changes made to this file not in GitHub will be over written! 2 | guides: 3 | - title: Overview 4 | path: /web/ 5 | -------------------------------------------------------------------------------- /src/content/en/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/en/_shared/related-guides/heading.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/content/en/_shared/sample.html: -------------------------------------------------------------------------------- 1 | Oh, hello! I'm a child file that's been included in a parent file. 2 | -------------------------------------------------------------------------------- /src/content/en/_shared/translation-end.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/content/en/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/en/chromium-blog/intent-to-infographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/chromium-blog/intent-to-infographic.jpg -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/cred-mgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/cred-mgt.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/ic_home_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/ic_home_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/ic_https_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/ic_https_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/ic_important_devices_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/ic_important_devices_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/ic_thumb_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/ic_thumb_up_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/pay-req.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/pay-req.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/web-comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/web-comp.png -------------------------------------------------------------------------------- /src/content/en/fundamentals/images/web-push-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/fundamentals/images/web-push-notification.png -------------------------------------------------------------------------------- /src/content/en/images/AMP-GIF-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/AMP-GIF-2x.gif -------------------------------------------------------------------------------- /src/content/en/images/PWA-GIF-2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/PWA-GIF-2x.gif -------------------------------------------------------------------------------- /src/content/en/images/cds18-banner-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/cds18-banner-img.png -------------------------------------------------------------------------------- /src/content/en/images/cds20-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/cds20-art.png -------------------------------------------------------------------------------- /src/content/en/images/cds20-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/cds20-wide.png -------------------------------------------------------------------------------- /src/content/en/images/cds21-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/cds21-art.jpg -------------------------------------------------------------------------------- /src/content/en/images/common/add-to-hs-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/common/add-to-hs-16x9.png -------------------------------------------------------------------------------- /src/content/en/images/common/push-notification-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/common/push-notification-16x9.png -------------------------------------------------------------------------------- /src/content/en/images/common/webcomponents-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/common/webcomponents-logo.png -------------------------------------------------------------------------------- /src/content/en/images/content-https-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/content-https-2x.jpg -------------------------------------------------------------------------------- /src/content/en/images/content-performance-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/content-performance-2x.jpg -------------------------------------------------------------------------------- /src/content/en/images/content-responsive-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/content-responsive-2x.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/abdshomad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/abdshomad.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/adamargyle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/adamargyle.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/addyosmani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/addyosmani.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/adrianajara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/adrianajara.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/agektmr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/agektmr.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/alexdanilo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/alexdanilo.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/alexshalamov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/alexshalamov.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/aliceboxhall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/aliceboxhall.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/andismith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/andismith.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/andreban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/andreban.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/arthurevans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/arthurevans.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/beaufortfrancois.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/beaufortfrancois.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/bokan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/bokan.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/borissmus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/borissmus.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/brendankenny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/brendankenny.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/captainpangyo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/captainpangyo.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/cbrand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/cbrand.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/chriswilson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/chriswilson.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/cwdoh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/cwdoh.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/dalecurtis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/dalecurtis.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/developit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/developit.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/dgash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/dgash.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/dmitryskripunov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/dmitryskripunov.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/dtapuska.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/dtapuska.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/durgapandey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/durgapandey.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/emilaeklund.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/emilaeklund.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/emilystark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/emilystark.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ericbidelman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ericbidelman.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ericlawrence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ericlawrence.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ewagasperowicz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ewagasperowicz.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/fawazm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/fawazm.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/flaviocopes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/flaviocopes.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/franktang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/franktang.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/glenshires.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/glenshires.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/greenido.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/greenido.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/heathermahan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/heathermahan.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/henrylim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/henrylim.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/hongchanchoi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/hongchanchoi.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/housseindjirdeh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/housseindjirdeh.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/iamakulov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/iamakulov.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ianbarber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ianbarber.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ilmariheikkinen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ilmariheikkinen.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ilyagrigorik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ilyagrigorik.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/ingvarstepanyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/ingvarstepanyan.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jackfranklin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jackfranklin.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jacquerie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jacquerie.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jakearchibald.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jakearchibald.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/janscheffler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/janscheffler.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jasonpark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jasonpark.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jbingham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jbingham.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jbnicolai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jbnicolai.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jecelynyeen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jecelynyeen.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jeffposnick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jeffposnick.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jennygove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jennygove.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jeokrang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jeokrang.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jeremywagner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jeremywagner.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jobay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jobay.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/johyphenel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/johyphenel.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/jonathangarbee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/jonathangarbee.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/josephmedley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/josephmedley.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/justinfagnani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/justinfagnani.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/katjackson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/katjackson.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/kaycebasques.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/kaycebasques.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/kenchris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/kenchris.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/kinukoyasuda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/kinukoyasuda.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/kosamari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/kosamari.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/koto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/koto.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/lucaberton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/lucaberton.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/majidvp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/majidvp.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mathiasbynens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mathiasbynens.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mattgaunt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mattgaunt.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/maudnalpas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/maudnalpas.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mcasas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mcasas.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mco.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/megginkearney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/megginkearney.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mikemahemoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mikemahemoff.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mikewest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mikewest.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mkazi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mkazi.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mlamouri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mlamouri.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mscales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mscales.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mustafa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mustafa.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/mychaelgo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/mychaelgo.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/no-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/no-photo.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/nsatragno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/nsatragno.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/nurinamu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/nurinamu.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/orkon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/orkon.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/owencm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/owencm.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/patrickhulce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/patrickhulce.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/paulirish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/paulirish.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/paulkinlan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/paulkinlan.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/paullewis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/paullewis.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/pavoldrotar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/pavoldrotar.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/pbakaus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/pbakaus.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/peconn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/peconn.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/petelepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/petelepage.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/philipwalton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/philipwalton.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/pjmclachlan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/pjmclachlan.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/plegner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/plegner.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/pozdnyakov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/pozdnyakov.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/reillyg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/reillyg.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/renatomangini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/renatomangini.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/robdodson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/robdodson.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/rowanmerewood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/rowanmerewood.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/rsolomakhin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/rsolomakhin.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/rviscomi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/rviscomi.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sadym.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sadym.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sahel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sahel.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/samchen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/samchen.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/samdutton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/samdutton.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/samthorogood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/samthorogood.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sethladd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sethladd.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sgomes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sgomes.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sieke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sieke.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sigurds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sigurds.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/sunyunjia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/sunyunjia.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/surma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/surma.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/swengineer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/swengineer.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/taylorsavage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/taylorsavage.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/tdresser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/tdresser.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/thomassteiner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/thomassteiner.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/tomgreenaway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/tomgreenaway.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/tomwiltzius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/tomwiltzius.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/tvanderlippe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/tvanderlippe.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/umarhansa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/umarhansa.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/victorcostan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/victorcostan.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/vinamratasingal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/vinamratasingal.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/wangyu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/wangyu.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/wayouliu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/wayouliu.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/wdenniss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/wdenniss.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/yoavweiss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/yoavweiss.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/yoichiro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/yoichiro.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/yvoschaap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/yvoschaap.jpg -------------------------------------------------------------------------------- /src/content/en/images/contributors/zkoch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/contributors/zkoch.jpg -------------------------------------------------------------------------------- /src/content/en/images/cr100-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/cr100-promo.png -------------------------------------------------------------------------------- /src/content/en/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/favicon.ico -------------------------------------------------------------------------------- /src/content/en/images/gitlocalize_image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/gitlocalize_image0.png -------------------------------------------------------------------------------- /src/content/en/images/gitlocalize_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/gitlocalize_image1.png -------------------------------------------------------------------------------- /src/content/en/images/hero-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/hero-2x.png -------------------------------------------------------------------------------- /src/content/en/images/landing-crdev-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/landing-crdev-16x9.png -------------------------------------------------------------------------------- /src/content/en/images/landing-webdev-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/landing-webdev-16x9.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/assignment-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/assignment-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/devices-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/devices-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/home-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/home-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/ic_home_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/ic_home_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/ic_https_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/ic_https_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/ic_important_devices_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/ic_important_devices_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/ic_thumb_up_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/ic_thumb_up_black_48dp.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/image-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/image-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/important-devices-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/important-devices-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/lock-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/lock-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/money-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/money-square.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/movie-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/movie-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/offline-bolt-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/offline-bolt-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/offline-pin-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/offline-pin-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/q-and-a-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/q-and-a-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/search-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/search-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/thumbs-up-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/thumbs-up-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/touch-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/touch-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/web-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/web-short.png -------------------------------------------------------------------------------- /src/content/en/images/md-icons/whats-hot-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/md-icons/whats-hot-short.png -------------------------------------------------------------------------------- /src/content/en/images/pwa-e-16x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/pwa-e-16x9.gif -------------------------------------------------------------------------------- /src/content/en/images/pwa-f-16x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/pwa-f-16x9.gif -------------------------------------------------------------------------------- /src/content/en/images/pwa-gif-flipkart-250.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/pwa-gif-flipkart-250.gif -------------------------------------------------------------------------------- /src/content/en/images/pwa-i-16x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/pwa-i-16x9.gif -------------------------------------------------------------------------------- /src/content/en/images/pwa-r-16x9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/pwa-r-16x9.gif -------------------------------------------------------------------------------- /src/content/en/images/social-webfu-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/social-webfu-16x9.png -------------------------------------------------------------------------------- /src/content/en/images/tool_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/tool_icon.png -------------------------------------------------------------------------------- /src/content/en/images/wd-live-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/wd-live-wide.png -------------------------------------------------------------------------------- /src/content/en/images/wd-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/wd-live.png -------------------------------------------------------------------------------- /src/content/en/images/web-dev-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-dev-logo.png -------------------------------------------------------------------------------- /src/content/en/images/web-fundamentals-icon144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-fundamentals-icon144x144.png -------------------------------------------------------------------------------- /src/content/en/images/web-fundamentals-icon192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-fundamentals-icon192x192.png -------------------------------------------------------------------------------- /src/content/en/images/web-fundamentals-icon36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-fundamentals-icon36x36.png -------------------------------------------------------------------------------- /src/content/en/images/web-fundamentals-icon48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-fundamentals-icon48x48.png -------------------------------------------------------------------------------- /src/content/en/images/web-fundamentals-icon72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-fundamentals-icon72x72.png -------------------------------------------------------------------------------- /src/content/en/images/web-fundamentals-icon96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/images/web-fundamentals-icon96x96.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/app-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/app-menu.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/app-window-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/app-window-elements.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/device-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/device-usage.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/dpwa-resp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/dpwa-resp-1.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/dpwa-resp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/dpwa-resp-2.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/dpwa-resp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/dpwa-resp-3.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/dpwa-resp-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/dpwa-resp-4.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/pwa-engaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/pwa-engaging.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/pwa-fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/pwa-fast.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/pwa-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/pwa-intro.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/pwa-reliable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/pwa-reliable.png -------------------------------------------------------------------------------- /src/content/en/progressive-web-apps/images/spotify-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/progressive-web-apps/images/spotify-screenshot.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e01-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e01-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e02-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e02-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e03-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e03-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e04-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e04-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e05-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e05-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e06-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s01-e06-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e01-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e01-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e02-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e02-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e03-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e03-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e04-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e04-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e05-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/designer-vs-developer/podcast/images/dvd-s02-e05-cover.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/http203-podcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/http203-podcast.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/http203-episode-1-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/http203-episode-1-art.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/http203-episode-2-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/http203-episode-2-art.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/http203-episode-3-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/http203-episode-3-art.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/http203-episode-4-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/http203-episode-4-art.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/http203-episode-5-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/http203-episode-5-art.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/io-mariko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/io-mariko.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/io.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/io.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/jake-in-pain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/jake-in-pain.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/surjiko-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/surjiko-small.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/surma-and-jake-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/surma-and-jake-2.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/surma-and-jake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/surma-and-jake.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/with-greg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/with-greg.jpg -------------------------------------------------------------------------------- /src/content/en/shows/http203/podcast/images/with-mariko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/http203/podcast/images/with-mariko.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/blinkon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/blinkon.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/blinkon_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/blinkon_rect.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/applied-science/100ms-vs-60fps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/applied-science/100ms-vs-60fps.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/applied-science/takeover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/applied-science/takeover.gif -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image00.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image01.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image02.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image03.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image04.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image05.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image06.gif -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image07.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image07.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image08.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image09.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image10.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/fundamentals-of-web-dev/image11.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/layers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/layers.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/report-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/report-card.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/roadmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/roadmap.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/safari-perf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/safari-perf.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/sweeter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/sweeter.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/wc-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds/2014/polymer-state-of-the-union/wc-org.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/cds_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/cds_rect.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/devbytes_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/devbytes_rect.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/googleio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/googleio.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/googleio_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/googleio_rect.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/http203_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/http203_rect.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/lazyweb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/lazyweb.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/lazyweb_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/lazyweb_rect.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/nic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/nic.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/nic_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/nic_rect.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/polycasts_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/polycasts_rect.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/pwa_devsummit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/pwa_devsummit.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/supercharged.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/supercharged.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/supercharged_rect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/supercharged_rect.jpg -------------------------------------------------------------------------------- /src/content/en/shows/imgs/ttt_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/ttt_rect.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/udacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/udacity.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/udacity_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/udacity_rect.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/webrtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/webrtc.png -------------------------------------------------------------------------------- /src/content/en/shows/imgs/webrtc_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/imgs/webrtc_rect.png -------------------------------------------------------------------------------- /src/content/en/shows/lazyweb/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Lazy Web 3 | path: https://www.youtube.com/playlist?list=PLNYkxOF6rcIAphRfFANEdt5WTb87aZZDk 4 | status: external 5 | 6 | -------------------------------------------------------------------------------- /src/content/en/shows/polycasts/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Polycasts 3 | path: https://www.youtube.com/playlist?list=PLNYkxOF6rcIDdS7HWIC_BYRunV6MHs5xo 4 | status: external 5 | 6 | -------------------------------------------------------------------------------- /src/content/en/shows/pwa-devsummit/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Progressive Web App Summit 3 | path: https://www.youtube.com/playlist?list=PLNYkxOF6rcIAWWNR_Q6eLPhsyx6VvYjVb 4 | status: external 5 | -------------------------------------------------------------------------------- /src/content/en/shows/supercharged/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Supercharged 3 | path: https://www.youtube.com/playlist?list=PLNYkxOF6rcIBz9ACEQRmO9Lw8PW7vn0lr 4 | status: external 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/content/en/shows/ttt/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Totally Tooling Tips 3 | path: https://www.youtube.com/playlist?list=PLNYkxOF6rcIB3ci6nwNyLYNU6RDOU3YyL 4 | status: external 5 | 6 | -------------------------------------------------------------------------------- /src/content/en/shows/ttt/imgs/ttt_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/imgs/ttt_header.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/autofilename-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/autofilename-screenshot.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/color-highlighter-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/color-highlighter-filled.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/color-highlighter-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/color-highlighter-underline.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/color-picker-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/color-picker-screenshot.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/gutter-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/gutter-color.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/jscs-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/jscs-screenshot.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/jshint-gutter-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/jshint-gutter-screenshot.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/jshint-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/jshint-screenshot.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-1/images/package-control-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-1/images/package-control-screenshot.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image00.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image01.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image02.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image03.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image04.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image05.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image06.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/es2015/image07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/es2015/image07.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/sublime-snippets/image00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/sublime-snippets/image00.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/sublime-snippets/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/sublime-snippets/image01.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/sublime-snippets/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/sublime-snippets/image02.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/sublime-snippets/image03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/sublime-snippets/image03.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/sublime-snippets/image04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/sublime-snippets/image04.png -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/window-commandline/chocoinstall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/window-commandline/chocoinstall.jpg -------------------------------------------------------------------------------- /src/content/en/shows/ttt/series-2/images/window-commandline/psreadline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/ttt/series-2/images/window-commandline/psreadline.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Udacity 3 | path: /web/shows/udacity/ 4 | 5 | -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud811.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud811.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud860.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud860.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud882.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud882.png -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud884.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud884.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud890.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud890.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud891.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud891.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud892.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud892.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud893.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud893.jpg -------------------------------------------------------------------------------- /src/content/en/shows/udacity/img/ud899.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/shows/udacity/img/ud899.png -------------------------------------------------------------------------------- /src/content/en/shows/webrtc/_toc.yaml: -------------------------------------------------------------------------------- 1 | toc: 2 | - title: Kranky Geeks WebRTC Web Show 3 | path: https://www.youtube.com/playlist?list=PLNYkxOF6rcICT_h7pn39XpU4JkqOja3p- 4 | status: external 5 | -------------------------------------------------------------------------------- /src/content/en/tools/images/angular-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/angular-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/images/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/angular.png -------------------------------------------------------------------------------- /src/content/en/tools/images/chrome-devtools-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/chrome-devtools-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/images/chrome-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/chrome-devtools.png -------------------------------------------------------------------------------- /src/content/en/tools/images/lighthouse-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/lighthouse-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/images/lit-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/lit-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/images/pagespeed-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/pagespeed-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/images/puppeteer-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/puppeteer-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/images/puppeteer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/puppeteer.png -------------------------------------------------------------------------------- /src/content/en/tools/images/tools-landing-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/tools-landing-page.gif -------------------------------------------------------------------------------- /src/content/en/tools/images/workbox-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/images/workbox-16x9.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/audits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/audits.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/category-scores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/category-scores.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/cdt-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/cdt-report.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/download-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/download-report.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/extension.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/icon-on-toolbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/icon-on-toolbar.jpg -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/lh_favicon_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/lh_favicon_32px.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/lh_logo_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/lh_logo_bg.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/lighthouse-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/lighthouse-icon-128.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/lighthouse-icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/lighthouse-icon-38.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/lighthouse-psi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/lighthouse-psi.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/report.jpg -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/report.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/share.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/images/viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/images/viewer.png -------------------------------------------------------------------------------- /src/content/en/tools/lighthouse/v3/imgs/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/tools/lighthouse/v3/imgs/ui.png -------------------------------------------------------------------------------- /src/content/en/updates/app-window-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/app-window-elements.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-03-03/add-to-home-screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-03-03/add-to-home-screen.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-03-03/app-install-banner-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-03-03/app-install-banner-io.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-03-03/app-install-banner-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-03-03/app-install-banner-qr.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-03-03/inlineinstall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-03-03/inlineinstall.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-04-16-autocapitalize/no-capitalization.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-04-16-autocapitalize/no-capitalization.mp4 -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-05-05-hard-reload/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-05-05-hard-reload/screenshot.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-10-28-chrome-47-webrtc/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-10-28-chrome-47-webrtc/featured.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-10-28-chrome-47-webrtc/lp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-10-28-chrome-47-webrtc/lp.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2015-10-28-chrome-47-webrtc/network-limiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015-10-28-chrome-47-webrtc/network-limiter.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/api-key.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/api-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/api-library.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/credentials.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/gcm-android-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/gcm-android-enabled.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/new-project.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/project-cloud-messaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/project-cloud-messaging.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/project-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/project-home.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/project-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/project-number.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/project-settings-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/project-settings-menu.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/03/push/server-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/03/push/server-key.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/10/inputdevicecapabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/10/inputdevicecapabilities.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/10/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/10/notification.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/10/splashscreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/10/splashscreen.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/10/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/10/splashscreen.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/11/devtools-digest/animations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/11/devtools-digest/animations.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2015/12/sync/emojoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2015/12/sync/emojoy.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/02/es2015-proxies/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/02/es2015-proxies/featured.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/02/save-data/data-saver-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/02/save-data/data-saver-chrome.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/02/save-data/google-weblight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/02/save-data/google-weblight.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/03/dom-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/03/dom-validation.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/04/chrome-51-deprecations/deps-rems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/04/chrome-51-deprecations/deps-rems.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/06/chrome-52-deprecations/deps-rems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/06/chrome-52-deprecations/deps-rems.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/06/device-orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/06/device-orientation.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/06/devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/06/devtools.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/06/ic_merge_type_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/06/ic_merge_type_black.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/06/media-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/06/media-query.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/ic_timeline_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/ic_timeline_black.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/payment-request/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/payment-request/0.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/payment-request/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/payment-request/1.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/payment-request/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/payment-request/2.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/payment-request/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/payment-request/3.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/payment-request/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/payment-request/4.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/07/payment-request/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/07/payment-request/5.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/08/document-write-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/08/document-write-warning.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/09/cache-query-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/09/cache-query-options.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/10/addeventlistener-once.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/10/addeventlistener-once.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/10/resizeobserver/contentbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/10/resizeobserver/contentbox.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/10/santa-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/10/santa-phone.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2016/11/cds/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2016/11/cds/featured.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/01/webcomponents.org/image00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/01/webcomponents.org/image00.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/01/webcomponents.org/webcomponents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/01/webcomponents.org/webcomponents.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/console-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/03/console-settings.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/custom-scrollbar/perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/03/custom-scrollbar/perspective.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/custom-scrollbar/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/03/custom-scrollbar/poster.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/custom-scrollbar/thumbmath02.tex.txt: -------------------------------------------------------------------------------- 1 | \text{factor} = \frac{\text{scroller.height} - 2 | \text{thumb.height}}{\text{scroller.scrollHeight} - \text{scroller.height}} 3 | -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/nic57/grid-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/03/nic57/grid-layout.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/nic57/media-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/03/nic57/media-session.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/03/release-notes-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/03/release-notes-preview.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/04/launch-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/04/launch-fullscreen.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/04/related.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/04/related.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/07/v8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/07/v8.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/abortable-fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/abortable-fetch.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/media-engagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/media-engagement.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/accelerometer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/accelerometer.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/device_coordinate_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/device_coordinate_system.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/gyroscope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/gyroscope.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/orientation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/orientation.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/orientation_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/orientation_phone.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/punchmeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/punchmeter.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/sensors/screen_coordinate_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/sensors/screen_coordinate_system.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/09/web-share_framed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/09/web-share_framed.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/animated-blur/badblur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/animated-blur/badblur.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/animated-blur/goodblur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/animated-blur/goodblur.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/animated-blur/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/animated-blur/pipeline.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/animated-blur/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/animated-blur/poster.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/intl-pluralrules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/intl-pluralrules.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/quota-console-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/quota-console-error.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/10/quota-watch-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/10/quota-watch-window.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/12/export-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/12/export-report.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2017/12/modal-permission-clipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2017/12/modal-permission-clipped.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/blackbox-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/blackbox-framework.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/blackbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/blackbox.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/blackboxed-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/blackboxed-results.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/click-breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/click-breakpoint.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/overrides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/overrides.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/preview-prettyprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/preview-prettyprint.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/preview.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/resolved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/resolved.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/response-prettyprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/response-prettyprint.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/02/wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/02/wrapper.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/03/nic65-server-timing-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/03/nic65-server-timing-devtools.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/06/featurepolicy/violation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/06/featurepolicy/violation.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/06/webar-chacmool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/06/webar-chacmool.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/07/infographic-speed-tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/07/infographic-speed-tools.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/07/nostate-prefetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/07/nostate-prefetch.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/07/pwacompat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/07/pwacompat.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/08/reporting/about_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/08/reporting/about_network.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/09/conic-gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/09/conic-gradient.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/09/notch-extra-margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/09/notch-extra-margin.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/09/simple-notch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/09/simple-notch.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/10/animation-worklet/slowprop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/10/animation-worklet/slowprop.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/10/animation-worklet/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/10/animation-worklet/social.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/10/audio-playlist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/10/audio-playlist.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/10/cache-addall-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/10/cache-addall-warning.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/10/media-playback-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/10/media-playback-controls.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/10/webauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/10/webauth.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/11/web-audio-games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/11/web-audio-games.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/badges-on-windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/badges-on-windows.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/badges.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/getinstalled-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/getinstalled-cropped.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/twitter-rel-time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/twitter-rel-time.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/vertical-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/vertical-text.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/wake-logo-featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/wake-logo-featured.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/wst-receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/wst-receive.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2018/12/wst-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2018/12/wst-send.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/01/user-activation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/01/user-activation.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/constructable-stylesheets/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/constructable-stylesheets/demo.mp4 -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/constructable-stylesheets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/constructable-stylesheets/overview.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/intersectionobserver-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/intersectionobserver-v2.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/lit-element.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/lit-element.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/responsive-space-suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/responsive-space-suit.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/space-suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/space-suit.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/02/trick-ad-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/02/trick-ad-click.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/03/prefers-reduced-motion/ice-skating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/03/prefers-reduced-motion/ice-skating.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/03/twitter-installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/03/twitter-installed.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/05/masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/05/masthead.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/balazs-ketyi-1410250-unsplash-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/balazs-ketyi-1410250-unsplash-small.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/cr-cron3-diff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/cr-cron3-diff.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/cr-cron3-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/cr-cron3-left.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/cr-cron3-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/cr-cron3-right.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/layoutNG-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/layoutNG-header.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/ng_float_overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/ng_float_overlap.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/nic075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/nic075.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/pwa-omnibox-install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/pwa-omnibox-install.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/web-share-from-myntra-to-twitter.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/web-share-from-myntra-to-twitter.mp4 -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/web-share-from-myntra-to-twitter.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/web-share-from-myntra-to-twitter.webm -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/06/webapk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/06/webapk.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/07/nic076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/07/nic076.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/07/web-components-console-deprecations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/07/web-components-console-deprecations.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/ch-chron5/rule-of-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/ch-chron5/rule-of-two.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/ch-chron5/sandbox-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/ch-chron5/sandbox-diagram.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/contact-picker-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/contact-picker-demo.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/contact-picker-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/contact-picker-left.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/contact-picker-long-press.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/contact-picker-long-press.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/contact-picker-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/contact-picker-right.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/contact-picker-user-choice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/contact-picker-user-choice.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/fs-open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/fs-open.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/fs-save-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/fs-save-icon.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/fs-save-permission-crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/fs-save-permission-crop.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/fs-save-permission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/fs-save-permission.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/fs-save.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/fs-save.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/periodic-background-sync/1-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/periodic-background-sync/1-record.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/periodic-background-sync/3-sw-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/periodic-background-sync/3-sw-panel.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/periodic-background-sync/5-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/periodic-background-sync/5-settings.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/periodic-background-sync/6-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/periodic-background-sync/6-checkbox.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/08/periodic-background-sync/7-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/08/periodic-background-sync/7-panel.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/cds2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/cds2019.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/chrom-chron-6-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/chrom-chron-6-screenshot1.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/chrom-chron-6-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/chrom-chron-6-screenshot2.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/chrom-chron-6-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/chrom-chron-6-screenshot3.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/lcp-google-filmstrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/lcp-google-filmstrip.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/new-77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/new-77.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/09/perf-metrics-load-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/09/perf-metrics-load-timeline.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/10/cds-2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/10/cds-2019.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/10/fs-open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/10/fs-open.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/10/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/10/info.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/10/new-78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/10/new-78.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/10/ot-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/10/ot-landing.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/11/cr-chron/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/11/cr-chron/img1.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/11/cr-chron/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/11/cr-chron/img2.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/columns.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/cr-chron-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/cr-chron-1.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/cr-chron-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/cr-chron-2.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/initiators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/initiators.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/letafter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/letafter.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/letbefore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/letbefore.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/maskable.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/maskable.mp4 -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/maskable.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/maskable.webm -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/modes.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/new-79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/new-79.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/overview.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/start.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/useragent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/useragent.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2019/12/wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2019/12/wasm.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/02/cc12-omnibox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/02/cc12-omnibox.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/02/new-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/02/new-80.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/04/cr-calendar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/04/cr-calendar.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/05/dep-rem_480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/05/dep-rem_480.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/05/forms-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/05/forms-after.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/05/forms-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/05/forms-before.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/05/forms-focus-ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/05/forms-focus-ring.gif -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/05/new-83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/05/new-83.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/05/vitals-core.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/05/vitals-core.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/09/dep-rem_86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/09/dep-rem_86.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/09/es-migrate-spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/09/es-migrate-spreadsheet.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/10/dep-rem_87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/10/dep-rem_87.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/10/fs-save-permission-crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/10/fs-save-permission-crop.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/10/game-controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/10/game-controller.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/10/new-86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/10/new-86.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/10/webhid-prompt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/10/webhid-prompt.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/11/camera-ptz-user-prompt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/11/camera-ptz-user-prompt.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/11/nic87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/11/nic87.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/11/photopea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/11/photopea.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2020/12/dep-rem_480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2020/12/dep-rem_480.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2021/01/devtools-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2021/01/devtools-blog.png -------------------------------------------------------------------------------- /src/content/en/updates/images/2021/01/nic88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2021/01/nic88.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/2021/01/pillars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/2021/01/pillars.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/animations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/animations.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/audio.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/baseline-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/baseline-sync.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/checklist.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/chrome-devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/chrome-devtools.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/contacts.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/cr-chron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/cr-chron.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/credit_card.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/deps-rems.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/deps-rems.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/devices.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/encryption.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/file.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/focus.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/headless-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/headless-chrome.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/info.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/js.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/keyboard.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/monthly.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/mouse.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/new-in-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/new-in-chrome.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/notifications.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/photo.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/picture-in-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/picture-in-picture.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/play-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/play-outline.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/quilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/quilt.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/screen-rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/screen-rotation.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/sd-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/sd-card.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/security.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/send.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/share.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/star.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/styles.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/thumbs-up.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/timeline.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/timer.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/usb.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/visibility.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/vr-in-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/vr-in-chrome.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/warning.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/webassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/webassembly.png -------------------------------------------------------------------------------- /src/content/en/updates/images/generic/webaudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/generic/webaudio.png -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/android-magnification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/android-magnification.png -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/chrome-a11y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/chrome-a11y.png -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/deps-rems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/deps-rems.png -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/forced-sync-layout-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/forced-sync-layout-popup.png -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/rowscols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/rowscols.png -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/rtcshare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/rtcshare.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/misc/weird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/misc/weird.jpg -------------------------------------------------------------------------------- /src/content/en/updates/images/supercharged/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/images/supercharged/poster.jpg -------------------------------------------------------------------------------- /src/content/en/updates/videos/2015-07-21-media-notifications/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/videos/2015-07-21-media-notifications/poster.jpg -------------------------------------------------------------------------------- /src/content/en/updates/videos/2016/07/autoplay/chrome-clip.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/videos/2016/07/autoplay/chrome-clip.mp4 -------------------------------------------------------------------------------- /src/content/en/updates/videos/2016/07/autoplay/chrome-clip.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/videos/2016/07/autoplay/chrome-clip.webm -------------------------------------------------------------------------------- /src/content/en/updates/videos/2017/10/otvfont.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/videos/2017/10/otvfont.mp4 -------------------------------------------------------------------------------- /src/content/en/updates/videos/2017/10/otvfont.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/en/updates/videos/2017/10/otvfont.webm -------------------------------------------------------------------------------- /src/content/es/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/fr/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/he/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/he/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/hi/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/id/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/id/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/it/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/ja/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/ja/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/ko/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/ko/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/nl/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/nl/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/pt-br/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/ru/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/th/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/th/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/tr/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/tr/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/vi/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/zh-cn/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/zh-cn/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/content/zh-cn/fundamentals/codelabs/offline/images/image00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/zh-cn/fundamentals/codelabs/offline/images/image00.png -------------------------------------------------------------------------------- /src/content/zh-cn/fundamentals/codelabs/offline/images/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/zh-cn/fundamentals/codelabs/offline/images/image01.png -------------------------------------------------------------------------------- /src/content/zh-cn/fundamentals/codelabs/offline/images/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/zh-cn/fundamentals/codelabs/offline/images/image02.png -------------------------------------------------------------------------------- /src/content/zh-cn/fundamentals/codelabs/offline/images/image03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/zh-cn/fundamentals/codelabs/offline/images/image03.png -------------------------------------------------------------------------------- /src/content/zh-cn/fundamentals/codelabs/offline/images/image04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/content/zh-cn/fundamentals/codelabs/offline/images/image04.png -------------------------------------------------------------------------------- /src/content/zh-tw/_shared/machine-translation-start.html: -------------------------------------------------------------------------------- 1 | 2 |

Powered by Google Translate

3 | -------------------------------------------------------------------------------- /src/content/zh-tw/_shared/related-guides/heading.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/content/zh-tw/_shared/translation-out-of-date.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /src/templates/reference-docs/jsdoc/views/augments.hbs: -------------------------------------------------------------------------------- 1 | {{#any augments}} 2 |
{{translateHeading 'augments' augments}}
3 | {{#each augments}} 4 |
{{link this}}
5 | {{/each}} 6 | {{/any}} 7 | -------------------------------------------------------------------------------- /src/templates/reference-docs/jsdoc/views/implements.hbs: -------------------------------------------------------------------------------- 1 | {{#any implements}} 2 |
{{translateHeading 'implements' implements}}
3 | {{#each implements}} 4 |
{{link this}}
5 | {{/each}} 6 | {{/any}} 7 | -------------------------------------------------------------------------------- /src/templates/reference-docs/jsdoc/views/see.hbs: -------------------------------------------------------------------------------- 1 | {{#any see}} 2 |
{{translateHeading 'see' see}}
3 | {{#each see}} 4 |
{{link (see this ../longname)}}
5 | {{/each}} 6 | {{/any}} 7 | -------------------------------------------------------------------------------- /src/tests/_good-include.md: -------------------------------------------------------------------------------- 1 | {# wf_md_include #} 2 | 3 | [service-worker-primer]: /web/fundamentals/getting-started/primers/service-workers "Service Workers: An Introduction" 4 | 5 | -------------------------------------------------------------------------------- /src/tests/commonTags.json: -------------------------------------------------------------------------------- 1 | { "commonTags": "no not really! "} 2 | -------------------------------------------------------------------------------- /src/tests/web-fundamentals-icon192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/WebFundamentals/f457a26e610a6c17d0b1864c04c892f38c117e8e/src/tests/web-fundamentals-icon192x192.png -------------------------------------------------------------------------------- /tools/update-blink_components.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | curl -s https://blinkcomponents-b48b5.firebaseapp.com/blinkcomponents | awk '{gsub (/,/,",\n "); print}' > src/data/blinkComponents.json 5 | --------------------------------------------------------------------------------