Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Side by Side Diff: third_party/WebKit/LayoutTests/svg/text/resources/glyph-orientation-vertical.css

Issue 1404853003: Add SVG Text to support the CSS 'text-orientation' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TestExpectations Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698