- flex-abspos-staticpos-* (x42)
- Also failing in Chrome, only working in Firefox
- flexbox +
position:absolutechild with severalalign-content,align-self,justify-contentcombinations - fantasai's notes
- Neither Firefox nor Chrome applies justify-self to an abspos flex child.
- Both Firefox and Chrome apply align-self to an abspos flex child, in the cross axis.
- Both Firefox and Chrome apply justify-content on the container to the abspos, in the main axis.
- Firefox applies align-content on the container to the abspos, but Chrome doesn't. (Note that align-content only has an effect if the flexbox is multiline.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.boojumbrewing.com/ | |
| https://www.akr-developers.com/ | |
| https://valorantforums.com/ | |
| https://topicplay.com/ | |
| https://se.mydlink.com/ | |
| https://fujimausa.com/ | |
| https://www.montbel.com/ | |
| https://allesvoordekids.nl/ | |
| https://www.loostick.fr/ | |
| https://discuss.flarum.org/ |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rank,page,url | |
| 16,https://postmaster.live.com/,https://sendersupport.olc.protection.outlook.com/pm/ref/litedepex.js | |
| 79,https://shop.adobe.com/,https://drh.img.digitalriver.com/DRHM/Storefront/Library/scripts/jquery/plugins/jquery.transform.min.js | |
| 79,https://shop.adobe.com/,https://drh.img.digitalriver.com/DRHM/Storefront/Site/adbestap/cm/multimedia/script/MiniCart.SCS.jQuery-1.5_bugfix_v1.js | |
| 242,https://webaffiliates.bet9ja.com/,https://webaffiliates.bet9ja.com/includes/scripts/xmlxsl.js | |
| 369,https://labs.oracle.com/,https://static.oracle.com/cdn/apex/20.1.0.00.13-a/libraries/apex/minified/desktop_all.min.js?v=20.1.0.00.13 | |
| 369,https://livesql.oracle.com/,https://livesql.oracle.com/i/libraries/apex/minified/desktop_all.min.js?v=19.2.0.00.18 | |
| 369,https://iacademy.oracle.com/,https://iacademy.oracle.com/i/libraries/apex/minified/desktop_all.min.js?v=19.1.0.00.15 | |
| 369,https://asktom.oracle.com/,https://static.oracle.com/cdn/apex/20.1.0.00.13-a/libraries/apex/minified/desktop_all.min.js?v=20.1.0.00.13 | |
| 369,https://devg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Introduction | |
| Scope | |
| Conformance | |
| Example Clause Heading | |
| Normative References | |
| Overview | |
| Web Scripting | |
| Hosts and Implementations | |
| ECMAScript Overview | |
| Objects |
- Atomics#waitAsync (Confluence, MDN) - see mdn/browser-compat-data#8930
- Atomics#wake (Confluence, MDN)
- Error#captureStackTrace (Confluence, MDN)
- Error#stackTraceLimit (Confluence, [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/stackTraceLimit#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2020/05/15 13:07:46:641 HTTPServer: POST http://127.0.0.1:52898/session | |
| 2020/05/15 13:07:46:641 HTTPServer: {"capabilities": {"alwaysMatch": {}}} | |
| 2020/05/15 13:07:47:252 AutomationProtocol: SEND {"method":"Automation.createBrowsingContext","params":{"presentationHint":"Window"},"id":1} | |
| 2020/05/15 13:07:47:339 AutomationProtocol: RECV {"result":{"handle":"page-F4F0C261-6CFE-43EC-AFD2-288E138E5A8D","presentation":"Window"},"id":1} | |
| 2020/05/15 13:07:47:339 AutomationProtocol: SEND {"method":"Automation.switchToBrowsingContext","params":{"browsingContextHandle":"page-F4F0C261-6CFE-43EC-AFD2-288E138E5A8D","frameHandle":""},"id":2} | |
| 2020/05/15 13:07:47:443 AutomationProtocol: RECV {"result":{},"id":2} | |
| 2020/05/15 13:07:47:443 HTTPServer: --> HTTP 200 | |
| 2020/05/15 13:07:47:443 HTTPServer: --> {"value":{"sessionId":"FF8D8566-E70D-4A94-8111-89D4944584F5","capabilities":{"safari:platformVersion":"10.15.4","safari:automaticInspection":false,"webkit:WebRTC":{"DisableICECandidateFiltering":false,"DisableInsecureMediaCa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { Octokit } = require('@octokit/rest'); | |
| const { throttling } = require('@octokit/plugin-throttling'); | |
| const MyOctokit = Octokit.plugin(throttling); | |
| const octokit = new MyOctokit({ | |
| auth: process.env.GH_TOKEN, | |
| throttle: { | |
| onRateLimit: (retryAfter, options) => { | |
| console.warn(`Request quota exhausted for request ${options.method} ${options.url}, retrying after ${retryAfter} seconds`); | |
| return true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| const assert = require('assert'); | |
| const {resolve, Resolver} = require('dns').promises; | |
| const {readFile} = require('fs').promises; | |
| // Delete bits of records <https://nodejs.org/api/dns.html#dns_dns_resolveany_hostname_callback> | |
| // to keep only the important bits for comparing equivalence. | |
| function normalize(records) { | |
| const set = new Set(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2020/01/23 08:00:15:370 HTTPServer: POST http://127.0.0.1:50349/session | |
| 2020/01/23 08:00:15:370 HTTPServer: {"capabilities": {"alwaysMatch": {"pageLoadStrategy": "eager"}}} | |
| 2020/01/23 08:00:15:811 AutomationProtocol: SEND {"method":"Automation.createBrowsingContext","params":{"presentationHint":"Window"},"id":1} | |
| 2020/01/23 08:00:15:869 AutomationProtocol: RECV {"result":{"handle":"page-24F45886-686B-454F-9280-B2327743E39A","presentation":"Window"},"id":1} | |
| 2020/01/23 08:00:15:869 AutomationProtocol: SEND {"method":"Automation.switchToBrowsingContext","params":{"browsingContextHandle":"page-24F45886-686B-454F-9280-B2327743E39A","frameHandle":""},"id":2} | |
| 2020/01/23 08:00:15:888 AutomationProtocol: RECV {"result":{},"id":2} | |
| 2020/01/23 08:00:15:888 HTTPServer: --> HTTP 200 | |
| 2020/01/23 08:00:15:888 HTTPServer: --> {"value":{"sessionId":"CDAB9266-F3A7-4ED1-885F-22A0CABE911F","capabilities":{"safari:platformVersion":"10.14.6","safari:automaticInspection":false,"webkit:WebRTC":{"DisableICECandidateFiltering":fa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| url | imgtag | |
|---|---|---|
| https://www.discoverkeesler.com/ | <img src="/templates/yootheme/cache/Golf_FridayNight2-6d826a26.webp" | |
| https://milfmovies.site/ | <img src="/thumbs/183/896_baise_21.webp" | |
| https://androidflash.ru/ | <img src="wp-content/uploads/avast-1.webp" | |
| https://www.enoty.eu/ | <img src="/files/thumbs/d/2/9/d2989c53abf8ecf03b2b62f831fa7143/200x200-0.webp" | |
| https://www.geschmacksbefreier.de/ | <img src="/templates/yootheme/cache/logo_neu-3fc264a3.webp" | |
| https://bigpeople.com.ua/ | <img src="catalog/language/ru-ru/ru-ru.webp" | |
| https://sklep.wisla.krakow.pl/ | <img src="wp-content/webp-express/webp-images/doc-root/wp-content/themes/wislasklep/assets/img/logo.png.webp" | |
| https://www.synonyma.se/ | <img src="/pic/s/synonymer.webp" | |
| https://childrenshoes.com.ua/ | <img src="/upload/ammina.optimizer/png-webp/q80/upload/adidas.webp" |