├── .gitignore ├── Makefile ├── README.md ├── data ├── accelerometer.json ├── ambientlight.json ├── animation-timing.json ├── app-lifecycle.json ├── aria.json ├── audio-output.json ├── audio.json ├── autocomplete-cc.json ├── autocomplete.json ├── background-sync.json ├── battery.json ├── beacon.json ├── bluetooth.json ├── calendar.json ├── canvas.json ├── canvasproxy.json ├── contacts-sys.json ├── contacts.json ├── cors.json ├── credential-management.json ├── crypto.json ├── cryptokey.json ├── csp.json ├── css-2d.json ├── css-3d.json ├── css-animation.json ├── css-border.json ├── css-boxshadow.json ├── css-device-adapt.json ├── css-font-loading.json ├── css-nav-trans.json ├── css-rounded.json ├── css-size-adjust.json ├── css-snappoints.json ├── css-touch-action.json ├── css-transitions.json ├── css-will-change.json ├── datalist.json ├── ddr.json ├── discovery.json ├── dnt.json ├── eme.json ├── epr.json ├── eventsource.json ├── filereader.json ├── flexbox.json ├── frame-timing.json ├── fs2.json ├── fullscreen.json ├── gallery.json ├── geofencing.json ├── geolocation.json ├── getusermedia-cap.json ├── getusermedia.json ├── html5-download.json ├── humidity.json ├── idle-callback.json ├── iframe-sandbox.json ├── imagecapture.json ├── ime.json ├── indexeddb.json ├── indieui.json ├── inputaccept.json ├── inputdate.json ├── inputdevice.json ├── inputhint.json ├── inputmode.json ├── inputpattern.json ├── inputtext.json ├── intents.json ├── manifest.json ├── manifestjson.json ├── mediaqueries.json ├── mediaqueries4.json ├── mediasession.json ├── messaging-sys.json ├── mobile-wcag.json ├── mse.json ├── mwabp.json ├── mwbp-wcag.json ├── namedwebsockets.json ├── nav-timing.json ├── networkapi.json ├── notification.json ├── online.json ├── p2p.json ├── packaging.json ├── perf-timeline.json ├── permissions.json ├── picture.json ├── pointer-events.json ├── postmessage.json ├── preload.json ├── proximity.json ├── push.json ├── quota.json ├── recording.json ├── res-hints.json ├── res-timing.json ├── runtime.json ├── screenlock.json ├── secondscreen.json ├── sensors.json ├── serviceworker.json ├── setimmediate.json ├── smooth-scroll.json ├── speechinput.json ├── srcset.json ├── subres-integrity.json ├── svg12.json ├── svg2.json ├── task-scheduler.json ├── touchevent.json ├── user-timing.json ├── vibration.json ├── video.json ├── viewport-units.json ├── visibilitychange.json ├── wake-lock.json ├── webanimations.json ├── webaudio.json ├── webnfc.json ├── websockets.json ├── websql.json ├── webstorage.json ├── webworkers.json ├── wi-local.json ├── woff.json ├── woff2.json └── xhr2.json ├── github.svg ├── html5apps.png ├── index.es.html ├── index.html ├── js └── generate.js ├── specs └── tr.json ├── style.css ├── tools └── extract-spec-data.py └── webapp.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/README.md -------------------------------------------------------------------------------- /data/accelerometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/accelerometer.json -------------------------------------------------------------------------------- /data/ambientlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/ambientlight.json -------------------------------------------------------------------------------- /data/animation-timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/animation-timing.json -------------------------------------------------------------------------------- /data/app-lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/app-lifecycle.json -------------------------------------------------------------------------------- /data/aria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/aria.json -------------------------------------------------------------------------------- /data/audio-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/audio-output.json -------------------------------------------------------------------------------- /data/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/audio.json -------------------------------------------------------------------------------- /data/autocomplete-cc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/autocomplete-cc.json -------------------------------------------------------------------------------- /data/autocomplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/autocomplete.json -------------------------------------------------------------------------------- /data/background-sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/background-sync.json -------------------------------------------------------------------------------- /data/battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/battery.json -------------------------------------------------------------------------------- /data/beacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/beacon.json -------------------------------------------------------------------------------- /data/bluetooth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/bluetooth.json -------------------------------------------------------------------------------- /data/calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/calendar.json -------------------------------------------------------------------------------- /data/canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/canvas.json -------------------------------------------------------------------------------- /data/canvasproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/canvasproxy.json -------------------------------------------------------------------------------- /data/contacts-sys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/contacts-sys.json -------------------------------------------------------------------------------- /data/contacts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/contacts.json -------------------------------------------------------------------------------- /data/cors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/cors.json -------------------------------------------------------------------------------- /data/credential-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/credential-management.json -------------------------------------------------------------------------------- /data/crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/crypto.json -------------------------------------------------------------------------------- /data/cryptokey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/cryptokey.json -------------------------------------------------------------------------------- /data/csp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/csp.json -------------------------------------------------------------------------------- /data/css-2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-2d.json -------------------------------------------------------------------------------- /data/css-3d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-3d.json -------------------------------------------------------------------------------- /data/css-animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-animation.json -------------------------------------------------------------------------------- /data/css-border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-border.json -------------------------------------------------------------------------------- /data/css-boxshadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-boxshadow.json -------------------------------------------------------------------------------- /data/css-device-adapt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-device-adapt.json -------------------------------------------------------------------------------- /data/css-font-loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-font-loading.json -------------------------------------------------------------------------------- /data/css-nav-trans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-nav-trans.json -------------------------------------------------------------------------------- /data/css-rounded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-rounded.json -------------------------------------------------------------------------------- /data/css-size-adjust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-size-adjust.json -------------------------------------------------------------------------------- /data/css-snappoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-snappoints.json -------------------------------------------------------------------------------- /data/css-touch-action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-touch-action.json -------------------------------------------------------------------------------- /data/css-transitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-transitions.json -------------------------------------------------------------------------------- /data/css-will-change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/css-will-change.json -------------------------------------------------------------------------------- /data/datalist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/datalist.json -------------------------------------------------------------------------------- /data/ddr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/ddr.json -------------------------------------------------------------------------------- /data/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/discovery.json -------------------------------------------------------------------------------- /data/dnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/dnt.json -------------------------------------------------------------------------------- /data/eme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/eme.json -------------------------------------------------------------------------------- /data/epr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/epr.json -------------------------------------------------------------------------------- /data/eventsource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/eventsource.json -------------------------------------------------------------------------------- /data/filereader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/filereader.json -------------------------------------------------------------------------------- /data/flexbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/flexbox.json -------------------------------------------------------------------------------- /data/frame-timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/frame-timing.json -------------------------------------------------------------------------------- /data/fs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/fs2.json -------------------------------------------------------------------------------- /data/fullscreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/fullscreen.json -------------------------------------------------------------------------------- /data/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/gallery.json -------------------------------------------------------------------------------- /data/geofencing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/geofencing.json -------------------------------------------------------------------------------- /data/geolocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/geolocation.json -------------------------------------------------------------------------------- /data/getusermedia-cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/getusermedia-cap.json -------------------------------------------------------------------------------- /data/getusermedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/getusermedia.json -------------------------------------------------------------------------------- /data/html5-download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/html5-download.json -------------------------------------------------------------------------------- /data/humidity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/humidity.json -------------------------------------------------------------------------------- /data/idle-callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/idle-callback.json -------------------------------------------------------------------------------- /data/iframe-sandbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/iframe-sandbox.json -------------------------------------------------------------------------------- /data/imagecapture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/imagecapture.json -------------------------------------------------------------------------------- /data/ime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/ime.json -------------------------------------------------------------------------------- /data/indexeddb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/indexeddb.json -------------------------------------------------------------------------------- /data/indieui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/indieui.json -------------------------------------------------------------------------------- /data/inputaccept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputaccept.json -------------------------------------------------------------------------------- /data/inputdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputdate.json -------------------------------------------------------------------------------- /data/inputdevice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputdevice.json -------------------------------------------------------------------------------- /data/inputhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputhint.json -------------------------------------------------------------------------------- /data/inputmode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputmode.json -------------------------------------------------------------------------------- /data/inputpattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputpattern.json -------------------------------------------------------------------------------- /data/inputtext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/inputtext.json -------------------------------------------------------------------------------- /data/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/intents.json -------------------------------------------------------------------------------- /data/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/manifest.json -------------------------------------------------------------------------------- /data/manifestjson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/manifestjson.json -------------------------------------------------------------------------------- /data/mediaqueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mediaqueries.json -------------------------------------------------------------------------------- /data/mediaqueries4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mediaqueries4.json -------------------------------------------------------------------------------- /data/mediasession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mediasession.json -------------------------------------------------------------------------------- /data/messaging-sys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/messaging-sys.json -------------------------------------------------------------------------------- /data/mobile-wcag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mobile-wcag.json -------------------------------------------------------------------------------- /data/mse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mse.json -------------------------------------------------------------------------------- /data/mwabp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mwabp.json -------------------------------------------------------------------------------- /data/mwbp-wcag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/mwbp-wcag.json -------------------------------------------------------------------------------- /data/namedwebsockets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/namedwebsockets.json -------------------------------------------------------------------------------- /data/nav-timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/nav-timing.json -------------------------------------------------------------------------------- /data/networkapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/networkapi.json -------------------------------------------------------------------------------- /data/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/notification.json -------------------------------------------------------------------------------- /data/online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/online.json -------------------------------------------------------------------------------- /data/p2p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/p2p.json -------------------------------------------------------------------------------- /data/packaging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/packaging.json -------------------------------------------------------------------------------- /data/perf-timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/perf-timeline.json -------------------------------------------------------------------------------- /data/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/permissions.json -------------------------------------------------------------------------------- /data/picture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/picture.json -------------------------------------------------------------------------------- /data/pointer-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/pointer-events.json -------------------------------------------------------------------------------- /data/postmessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/postmessage.json -------------------------------------------------------------------------------- /data/preload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/preload.json -------------------------------------------------------------------------------- /data/proximity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/proximity.json -------------------------------------------------------------------------------- /data/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/push.json -------------------------------------------------------------------------------- /data/quota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/quota.json -------------------------------------------------------------------------------- /data/recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/recording.json -------------------------------------------------------------------------------- /data/res-hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/res-hints.json -------------------------------------------------------------------------------- /data/res-timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/res-timing.json -------------------------------------------------------------------------------- /data/runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/runtime.json -------------------------------------------------------------------------------- /data/screenlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/screenlock.json -------------------------------------------------------------------------------- /data/secondscreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/secondscreen.json -------------------------------------------------------------------------------- /data/sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/sensors.json -------------------------------------------------------------------------------- /data/serviceworker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/serviceworker.json -------------------------------------------------------------------------------- /data/setimmediate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/setimmediate.json -------------------------------------------------------------------------------- /data/smooth-scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/smooth-scroll.json -------------------------------------------------------------------------------- /data/speechinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/speechinput.json -------------------------------------------------------------------------------- /data/srcset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/srcset.json -------------------------------------------------------------------------------- /data/subres-integrity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/subres-integrity.json -------------------------------------------------------------------------------- /data/svg12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/svg12.json -------------------------------------------------------------------------------- /data/svg2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/svg2.json -------------------------------------------------------------------------------- /data/task-scheduler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/task-scheduler.json -------------------------------------------------------------------------------- /data/touchevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/touchevent.json -------------------------------------------------------------------------------- /data/user-timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/user-timing.json -------------------------------------------------------------------------------- /data/vibration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/vibration.json -------------------------------------------------------------------------------- /data/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/video.json -------------------------------------------------------------------------------- /data/viewport-units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/viewport-units.json -------------------------------------------------------------------------------- /data/visibilitychange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/visibilitychange.json -------------------------------------------------------------------------------- /data/wake-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/wake-lock.json -------------------------------------------------------------------------------- /data/webanimations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/webanimations.json -------------------------------------------------------------------------------- /data/webaudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/webaudio.json -------------------------------------------------------------------------------- /data/webnfc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/webnfc.json -------------------------------------------------------------------------------- /data/websockets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/websockets.json -------------------------------------------------------------------------------- /data/websql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/websql.json -------------------------------------------------------------------------------- /data/webstorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/webstorage.json -------------------------------------------------------------------------------- /data/webworkers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/webworkers.json -------------------------------------------------------------------------------- /data/wi-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/wi-local.json -------------------------------------------------------------------------------- /data/woff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/woff.json -------------------------------------------------------------------------------- /data/woff2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/woff2.json -------------------------------------------------------------------------------- /data/xhr2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/data/xhr2.json -------------------------------------------------------------------------------- /github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/github.svg -------------------------------------------------------------------------------- /html5apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/html5apps.png -------------------------------------------------------------------------------- /index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/index.es.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/index.html -------------------------------------------------------------------------------- /js/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/js/generate.js -------------------------------------------------------------------------------- /specs/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/specs/tr.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/style.css -------------------------------------------------------------------------------- /tools/extract-spec-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/tools/extract-spec-data.py -------------------------------------------------------------------------------- /webapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c-webmob/mobile-web-app-standards/HEAD/webapp.svg --------------------------------------------------------------------------------