-
Notifications
You must be signed in to change notification settings - Fork 747
Open
Labels
css-cascade-4Current WorkCurrent Work
Description
- should
CSS.supports("word-wrap", "break-word")
return true or false? - should
CSS.supports("(word-wrap: break-word)")
return true or false? - should
"word-wrap" in window.getComputedStyle(document.documentElement)
be true or false? - should
[...window.getComputedStyle(document.documentElement)].includes("word-wrap")
be true or false?
IMO:
- all UAs say true, which falls out from "for string arguments"
- all UAs say true, which falls out from converting it "at parse time" (but we may want to be more explicit that we mean any property name parsing, because "at parse time" is kinda unclear as to what parse time)
- all UAs say true; but this I'm unsure about what the current specs imply: does "applies in the CSSOM [for] property accessors" effect the generation of WebIDL attributes?
- all UAs supporting
word-wrap
as a legacy name alias say false; does this just fall out from the getter giving "longhand properties that are supported CSS properties", on the basis that they aren't supported properties (they're instead legacy name aliases)?
Metadata
Metadata
Assignees
Labels
css-cascade-4Current WorkCurrent Work