Hi, I noticed that there's not any clarification in the Decorations spec about applying multiple decorators to a single element.
Example: .headline[access-type="premium"] { decorator: url(#premium-decorator); } .headline[content-type="video"] { decorator: url(#video-decorator); } <h3 class="headline" content-type="video" access-type="premium">Headline Title</h3> What would be expected? Would the #video-decorator be applied, passing its result to the #premium-decorator in the <content> tag? Would only one be applied? If so, which one? -sam