Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Maps the SVG 'glyph-orientation-vertical' attribute to | |
|
fs
2015/10/16 10:54:50
What will happen to this when we remove the proper
| |
| 2 the CSS 'text-orientation' property, according to: | |
| 3 https://drafts.csswg.org/css-writing-modes-3/#glyph-orientation */ | |
| 4 [glyph-orientation-vertical="auto"] { | |
| 5 text-orientation: mixed; | |
| 6 } | |
| 7 [glyph-orientation-vertical="0deg"], [glyph-orientation-vertical="0"] { | |
| 8 text-orientation: upright; | |
| 9 } | |
| 10 [glyph-orientation-vertical="90deg"], [glyph-orientation-vertical="90"] { | |
| 11 text-orientation: sideways; | |
| 12 } | |
| OLD | NEW |