Re: [csswg-drafts] [css-ui-4] Align canonical order of `outline` sub-properties with `border` (#7700)

Here's a [testcase](https://www.software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Cp%20style%3D%22outline-width%3A%202px%3B%20outline-style%3A%20solid%3B%20outline-color%3A%20blue%3B%20border-width%3A%203px%3B%20border-style%3A%20dotted%3B%20border-color%3A%20orange%3B%22%20id%3D%22test%22%3E%0A%3Cscript%3E%0Avar%20e%20%3D%20document.getElementById(%22test%22)%3B%0Avar%20cs%20%3D%20getComputedStyle(e)%3B%0Adocument.write(%22border%2C%20specified%3A%20%22%20%2B%20e.style.borderLeft%20%2B%20%22%3Cbr%3E%22)%3B%0Adocument.write(%22outline%2C%20specified%3A%20%22%20%2B%20e.style.outline%20%2B%20%22%3Cbr%3E%22)%3B%0Adocument.write(%22border%2C%20computed%3A%20%22%20%2B%20getComputedStyle(document.getElementById(%22test%22)).borderLeft%20%2B%20%22%3Cbr%3E%22)%3B%0Adocument.write(%22outline%2C%20computed%3A%20%22%20%2B%20getComputedStyle(document.getElementById(%22test%22)).outline%20%2B%20%22%3Cbr%3E%22)%3B%0A%3C%2Fscript%3E) with both specified and computed styles.  It does largely agree that browsers follow the (inconsistent) spec, modulo a missing result for WebKit.

-- 
GitHub Notification of comment by dbaron
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7700#issuecomment-1440661746 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 22 February 2023 19:20:44 UTC