Update scroll position immediately after resizing view
[framework/web/webkit-efl.git] / LayoutTests / svg / W3C-I18N / NOTE
1 These tests are obtained from the SVG 1.2 Tiny BiDi test suite:
2 1) http://www.w3.org/International/tests/svg/test-direction-unicode-bidi-0
3
4 I copied all tests manually, and renamed them according to this conention:
5  -> Section "1. Direction on tspan in text elements"
6     -> Test "1 Default context, inline dirRTL ubEmbed"
7            --> tspan-dirRTL-ubEmbed-in-default-context.svg
8         -> Test "2 Default context, inline dirRTL ubNone"
9            --> tspan-dirRTL-ubNone-in-default-context.svg
10         ...
11
12 All references to SVGFonts have been removed (remove the <defs> section, rename font-family="SVGFreeSansASCII,sans-serif" to font-family="Arial").
13 Correct image references from "fooX.png" to "resources/fooX.png".
14
15 These tests are made for SVG 1.2 Tiny, which has a different definition for the "direction" property compared to SVG 1.1 First/Second Edition.
16
17 SVG 1.1 First/Second edition says: (http://www.w3.org/TR/SVG/text.html#RelationshipWithBiDirectionality)
18 This property specifies the base writing direction of text and the direction of embeddings and overrides (see 'unicode-bidi') for the Unicode bidirectional algorithm. For the 'direction' property to have any effect, the 'unicode-bidi' property's value must be 'embed' or 'bidi-override'.
19
20 SVG 1.2 Tiny says: (http://www.w3.org/TR/SVGTiny12/text.html#DirectionProperty)
21 This property specifies the base writing direction of text and the direction of embeddings and overrides (see 'unicode-bidi') for the Unicode bidirectional algorithm. For the 'direction' property to have any effect on an element that does not by itself establish a new text chunk (such as the 'tspan' element in SVG 1.2 Tiny), the 'unicode-bidi' property's value must be embed or bidi-override.
22
23 The main difference is that <text x="10" y="10" direction="rtl">foo bar</text> defines the start of a new text chunk
24 and thus the direction property is taken into account, whereas in SVG 1.1 the direction property would be ignored
25 unless you explicitely set unicode-bidi to embed/bidi-override. This is now handled properly in WebKit, as it's easy to make both 1.1/1.2 mode work for us.
26
27 2) http://www.w3.org/International/tests/svg/test-direction-alignment-0