-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 0219 text decoration inheritance #308
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this can be shortened and simultaneously made easier to understand as per my comment.
spec/ttml2.xml
Outdated
be inherited separately from the others.</p> | ||
<note role="example"> | ||
<p>For example, if the computed value of <code>tts:textDecoration</code> that applies to a <code>div</code> (division) element | ||
is the tuple <code>(false, true, true)</code>, denoting <code>(noUnderline, lineThrough, overline)</code>, and a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think the use of booleans helps this example for comprehensibility. Why not just use (noUnderline, lineThrough, overline)
directly and remove the (false, true, true)
equivalent? That boolean equivalent is not defined anywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accepted, will change.
…erence to boolean values (#219).
See #219.