- From: Gérard Talbot <css21testsuite@gtalbot.org>
- Date: Mon, 16 Feb 2015 23:26:58 -0500
- To: Taka Oshiyama <takaoshiyama@gmail.com>, Kazuaki Takemura <takemura@networksoft.co.jp>
- Cc: Public CSS Test suite mailing list <public-css-testsuite@w3.org>
Taka Oshiyama, Kazuaki Takemura, My understanding is that submitted tests should not be using vendor-prefixes. So, http://test.csswg.org/suites/css-writing-modes-3_dev/nightly-unstable/html/text-orientation-013.htm and http://test.csswg.org/suites/css-writing-modes-3_dev/nightly-unstable/html/text-orientation-sideways-right-001.htm and http://test.csswg.org/suites/css-writing-modes-3_dev/nightly-unstable/html/text-orientation-014.htm and possibly a few other tests you created... ------ If you are developing tests, then a) -moz- prefix is not needed as Firefox nightly supports writing-mode and text-orientation without prefix: in 'about:config', set layout.css.vertical-text.enabled to true in Firefox nightly build. b) Opera never supported -o-writing-mode and -o-text-orientation c) IE11 supports 'writing-mode: tb-rl' but not 'writing-mode: vertical-rl' d) You should always have the unprefixed version of the property last. *Not* best: text-orientation: sideways-left; -webkit-text-orientation: sideways-left; writing-mode: vertical-rl; -webkit-writing-mode: vertical-rl; Better: -webkit-text-orientation: sideways-left; text-orientation: sideways-left; -webkit-writing-mode: vertical-rl; writing-mode: vertical-rl; Again if/when you are submitting tests to test.csswg.org, you must remove the vendor-prefix. Gérard -- Test Format Guidelines http://testthewebforward.org/docs/test-format-guidelines.html Test Style Guidelines http://testthewebforward.org/docs/test-style-guidelines.html Test Templates http://testthewebforward.org/docs/test-templates.html CSS Naming Guidelines http://testthewebforward.org/docs/css-naming.html Test Review Checklist http://testthewebforward.org/docs/review-checklist.html CSS Metadata http://testthewebforward.org/docs/css-metadata.html
Received on Tuesday, 17 February 2015 04:27:28 UTC