├── .gitignore ├── Gruntfile.js ├── Recipe.min.js ├── cssUsage.src.js ├── license.txt ├── package.json ├── readme.md ├── src ├── crawl │ └── prepareTsv.js ├── cssShorthands.js ├── cssUsage.js ├── custom │ └── custom-run-template.js ├── fwkUsage.js ├── fwks │ ├── blueprint.js │ ├── bootstrap.js │ ├── dogfalo.js │ ├── grumby.js │ ├── inuit.js │ ├── lonelyGates.js │ └── modernizr.js ├── htmlUsage.js ├── init.js ├── lodash.js ├── patternUsage.js ├── patterns.js └── recipes │ ├── archive │ ├── app-manifest.js │ ├── browserDownloadUrls.js │ ├── editControls.js │ ├── experimentalWebgl.js │ ├── imgEdgeSearch.js │ ├── max-width-replaced-elems.js │ ├── mediaelements.js │ ├── metaviewport.js │ ├── padding-hack-flex-context.js │ ├── padding-hack.js │ ├── paymentrequest.js │ ├── recipe-template.js │ ├── unsupportedBrowser.js │ └── zstaticflex.js │ └── file-input.js └── tests ├── recipes ├── PaymentRequest.html ├── app-manifest.html ├── editControls.html ├── experimentalWebgl.html ├── file-input.html ├── max-width-replaced-elems.html ├── mediaelements.html ├── metaviewport.html ├── padding-hack-flex-context.html ├── padding-hack.html └── unsupportedBrowser.html ├── test-cases ├── counting-tests-1.html ├── counting-tests-2.html ├── counting-tests-3.html └── counting-tests-4.html ├── test-page-atrules ├── index.html ├── styles.css └── testfont.ttf ├── test-page ├── firefox-error.html ├── index.html ├── style.css ├── styles │ └── aboutNetError.css └── testfont.ttf └── unit-tests ├── index.html └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /Recipe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/Recipe.min.js -------------------------------------------------------------------------------- /cssUsage.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/cssUsage.src.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/readme.md -------------------------------------------------------------------------------- /src/crawl/prepareTsv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/crawl/prepareTsv.js -------------------------------------------------------------------------------- /src/cssShorthands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/cssShorthands.js -------------------------------------------------------------------------------- /src/cssUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/cssUsage.js -------------------------------------------------------------------------------- /src/custom/custom-run-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/custom/custom-run-template.js -------------------------------------------------------------------------------- /src/fwkUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwkUsage.js -------------------------------------------------------------------------------- /src/fwks/blueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/blueprint.js -------------------------------------------------------------------------------- /src/fwks/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/bootstrap.js -------------------------------------------------------------------------------- /src/fwks/dogfalo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/dogfalo.js -------------------------------------------------------------------------------- /src/fwks/grumby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/grumby.js -------------------------------------------------------------------------------- /src/fwks/inuit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/inuit.js -------------------------------------------------------------------------------- /src/fwks/lonelyGates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/lonelyGates.js -------------------------------------------------------------------------------- /src/fwks/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/fwks/modernizr.js -------------------------------------------------------------------------------- /src/htmlUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/htmlUsage.js -------------------------------------------------------------------------------- /src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/init.js -------------------------------------------------------------------------------- /src/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/lodash.js -------------------------------------------------------------------------------- /src/patternUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/patternUsage.js -------------------------------------------------------------------------------- /src/patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/patterns.js -------------------------------------------------------------------------------- /src/recipes/archive/app-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/app-manifest.js -------------------------------------------------------------------------------- /src/recipes/archive/browserDownloadUrls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/browserDownloadUrls.js -------------------------------------------------------------------------------- /src/recipes/archive/editControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/editControls.js -------------------------------------------------------------------------------- /src/recipes/archive/experimentalWebgl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/experimentalWebgl.js -------------------------------------------------------------------------------- /src/recipes/archive/imgEdgeSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/imgEdgeSearch.js -------------------------------------------------------------------------------- /src/recipes/archive/max-width-replaced-elems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/max-width-replaced-elems.js -------------------------------------------------------------------------------- /src/recipes/archive/mediaelements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/mediaelements.js -------------------------------------------------------------------------------- /src/recipes/archive/metaviewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/metaviewport.js -------------------------------------------------------------------------------- /src/recipes/archive/padding-hack-flex-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/padding-hack-flex-context.js -------------------------------------------------------------------------------- /src/recipes/archive/padding-hack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/padding-hack.js -------------------------------------------------------------------------------- /src/recipes/archive/paymentrequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/paymentrequest.js -------------------------------------------------------------------------------- /src/recipes/archive/recipe-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/recipe-template.js -------------------------------------------------------------------------------- /src/recipes/archive/unsupportedBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/unsupportedBrowser.js -------------------------------------------------------------------------------- /src/recipes/archive/zstaticflex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/archive/zstaticflex.js -------------------------------------------------------------------------------- /src/recipes/file-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/src/recipes/file-input.js -------------------------------------------------------------------------------- /tests/recipes/PaymentRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/PaymentRequest.html -------------------------------------------------------------------------------- /tests/recipes/app-manifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/app-manifest.html -------------------------------------------------------------------------------- /tests/recipes/editControls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/editControls.html -------------------------------------------------------------------------------- /tests/recipes/experimentalWebgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/experimentalWebgl.html -------------------------------------------------------------------------------- /tests/recipes/file-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/file-input.html -------------------------------------------------------------------------------- /tests/recipes/max-width-replaced-elems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/max-width-replaced-elems.html -------------------------------------------------------------------------------- /tests/recipes/mediaelements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/mediaelements.html -------------------------------------------------------------------------------- /tests/recipes/metaviewport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/metaviewport.html -------------------------------------------------------------------------------- /tests/recipes/padding-hack-flex-context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/padding-hack-flex-context.html -------------------------------------------------------------------------------- /tests/recipes/padding-hack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/padding-hack.html -------------------------------------------------------------------------------- /tests/recipes/unsupportedBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/recipes/unsupportedBrowser.html -------------------------------------------------------------------------------- /tests/test-cases/counting-tests-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-cases/counting-tests-1.html -------------------------------------------------------------------------------- /tests/test-cases/counting-tests-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-cases/counting-tests-2.html -------------------------------------------------------------------------------- /tests/test-cases/counting-tests-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-cases/counting-tests-3.html -------------------------------------------------------------------------------- /tests/test-cases/counting-tests-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-cases/counting-tests-4.html -------------------------------------------------------------------------------- /tests/test-page-atrules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page-atrules/index.html -------------------------------------------------------------------------------- /tests/test-page-atrules/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page-atrules/styles.css -------------------------------------------------------------------------------- /tests/test-page-atrules/testfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page-atrules/testfont.ttf -------------------------------------------------------------------------------- /tests/test-page/firefox-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page/firefox-error.html -------------------------------------------------------------------------------- /tests/test-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page/index.html -------------------------------------------------------------------------------- /tests/test-page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page/style.css -------------------------------------------------------------------------------- /tests/test-page/styles/aboutNetError.css: -------------------------------------------------------------------------------- 1 | body {background: black;} -------------------------------------------------------------------------------- /tests/test-page/testfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/test-page/testfont.ttf -------------------------------------------------------------------------------- /tests/unit-tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/unit-tests/index.html -------------------------------------------------------------------------------- /tests/unit-tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/css-usage/HEAD/tests/unit-tests/test.js --------------------------------------------------------------------------------