Bug 125859

Summary: Implement token element <ms>
Product: WebKit Reporter: Frédéric Wang (:fredw) <fred.wang>
Component: MathMLAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: ahmad.saleem792, bfulgham, jdiggs, mrobinson
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
URL: http://www.w3.org/Math/draft-spec/chapter3.html#presm.ms
Bug Depends on:    
Bug Blocks: 195797    
Attachments:
Description Flags
attempt none

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.