Closed
Description
https://drafts.csswg.org/cssom-1/#dom-cssstyledeclaration-getpropertypriority
Should it return empty string when the computed flag is set, like in Chrome/FF (at least)?
<style>#target { color: red !important }</style>
<script>
getComputedStyle(target).getPropertyPriority('color') // ''
</script>