- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Thu, 03 Nov 2022 13:59:39 +0000
- To: public-css-archive@w3.org
Was `borderBlockInlineWidth` supposed to be `borderBlockEndWidth`? It's not that it's not worth it. It just doesn't work: ```js style.cssText = "border-style: solid; --custom: 1px 2px"; style.borderBlockStartWidth = style.borderBlockEndWidth = "var(--custom)"; computedStyle.borderBlockStartWidth; // "3px" computedStyle.borderBlockEndWidth; // "3px" style.borderBlockWidth += ""; // Let's assume "var(--custom)" computedStyle.borderBlockStartWidth; // "1px" !!! computedStyle.borderBlockEndWidth; // "2px" !!! ``` -- GitHub Notification of comment by Loirooriol Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7983#issuecomment-1302157126 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 3 November 2022 13:59:40 UTC