Bug 125859 - Implement token element <ms>
Summary: Implement token element <ms>
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: MathML (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL: http://www.w3.org/Math/draft-spec/cha...
Keywords:
Depends on:
Blocks: mathml-core
  Show dependency treegraph
 
Reported: 2013-12-17 09:56 PST by Frédéric Wang (:fredw)
Modified: 2023-12-21 05:23 PST (History)
4 users (show)

See Also:


Attachments
attempt (537 bytes, text/html)
2013-12-17 13:44 PST, Frédéric Wang (:fredw)
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Frédéric Wang (:fredw) 2013-12-17 09:56:00 PST
The <ms> token element is not implemented. If we ignore the mstyle craziness (like Gecko does), this could be done with pure CSS:

ms:before, ms:after {
  content: "\0022"
}
ms[lquote]:before {
  content: attr(lquote)
}
ms[rquote]:after {
  content: attr(rquote)
}
Comment 1 Frédéric Wang (:fredw) 2013-12-17 13:44:41 PST
Created attachment 219449 [details]
attempt

Does not seem to work...
Comment 2 Frédéric Wang (:fredw) 2022-10-02 22:00:33 PDT
lquote/rquote have been removed from MathML Core: 

https://w3c.github.io/mathml-core/#string-literal-ms

So I guess we don't need to implement anything.

Leaving this open for now, to check if we pass WPT tests.